mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-25 01:48:39 -06:00
Update Dockerfile - Fix Prisma failed to detect the libssl/openssl
When try create a image with docker build -t
This commit is contained in:
parent
d5c2cfb4f9
commit
7b35957664
@ -1,7 +1,7 @@
|
||||
FROM node:20-alpine AS builder
|
||||
|
||||
RUN apk update && \
|
||||
apk add git ffmpeg wget curl bash
|
||||
apk add git ffmpeg wget curl bash openssl libc6-compat
|
||||
|
||||
LABEL version="2.2.0" description="Api to control whatsapp features through http requests."
|
||||
LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes"
|
||||
@ -32,7 +32,7 @@ RUN npm run build
|
||||
FROM node:20-alpine AS final
|
||||
|
||||
RUN apk update && \
|
||||
apk add tzdata ffmpeg bash
|
||||
apk add tzdata ffmpeg bash openssl libc6-compat
|
||||
|
||||
ENV TZ=America/Sao_Paulo
|
||||
|
||||
@ -55,4 +55,4 @@ ENV DOCKER_ENV=true
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
ENTRYPOINT ["/bin/bash", "-c", ". ./Docker/scripts/deploy_database.sh && npm run start:prod" ]
|
||||
ENTRYPOINT ["/bin/bash", "-c", ". ./Docker/scripts/deploy_database.sh && npm run start:prod" ]
|
||||
|
Loading…
Reference in New Issue
Block a user