Cynosis / Dockerfile
Fdgg55's picture
Update Dockerfile
28bbab9 verified
Raw
History Blame Contribute Delete
388 Bytes
FROM evoapicloud/evolution-api:latest
# Hugging Face Spaces settings
ENV PORT=8080
ENV SERVER_PORT=8080
ENV INSTANCES_PATH=/data/instances
# DISABLE DATABASE (fixes the sqlite error)
ENV DATABASE_ENABLED=false
# Your API key (hardcoded here - no secrets tab needed)
ENV AUTHENTICATION_API_KEY=SuperStrongKeyFdgg55Cynosis2026!
VOLUME /data
EXPOSE 8080
CMD ["npm", "run", "start:prod"]