Update Dockerfile
All checks were successful
Create Docker image / deploy (push) Successful in 30s

This commit is contained in:
Nova Cat 2025-03-29 20:42:48 -07:00
parent 227c0d0f8f
commit e192045653

View file

@ -1,6 +1,6 @@
FROM alpine:latest
WORKDIR /app
COPY . .
RUN apk add py3-gunicorn py3-requests py3-flask
RUN apk add --no-cache py3-gunicorn py3-requests py3-flask
CMD ["gunicorn", "--bind=0.0.0.0:2011", "server:app"]