Update Dockerfile
All checks were successful
Test web app / Check syntax (push) Successful in 15s
Test web app / Test server with Flask Dev Mode (push) Successful in 18s
Test web app / Test server with Gunicorn (WSGI) (push) Successful in 18s
Test web app / Test server with Hypercorn (ASGI) (push) Successful in 36s

This commit is contained in:
Nova Cat 2025-03-29 20:35:25 -07:00
parent ecb0b4583c
commit 0f73e13049

View file

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