diff --git a/Dockerfile b/Dockerfile index b4ba1b9e..5439f6d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS builder RUN apk update && \ - apk add git bash --no-cache + apk add git ffmpeg wget curl bash LABEL version="2.0.0" description="Api to control whatsapp features through http requests." LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes" @@ -30,7 +30,7 @@ RUN npm run build FROM node:20-alpine AS final RUN apk update && \ - apk add tzdata ffmpeg --no-cache + apk add tzdata ffmpeg ENV TZ=America/Sao_Paulo