fix: reply with media message

This commit is contained in:
Davidson Gomes 2024-06-10 15:03:41 -03:00
parent 99999eae5d
commit 95022578ba

View File

@ -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