From 95022578bafa577b4e9f52c725bdcc7d42b8d524 Mon Sep 17 00:00:00 2001 From: Davidson Gomes Date: Mon, 10 Jun 2024 15:03:41 -0300 Subject: [PATCH] fix: reply with media message --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4ba1b9e5..5439f6d88 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