Update Dockerfile
Some checks failed
Test web app / Check syntax (push) Successful in 8s
Test web app / Test server with Gunicorn (WSGI) (push) Has been cancelled
Test web app / Test server with Hypercorn (ASGI) (push) Has been cancelled
Test web app / Test server with Flask Dev Mode (push) Has been cancelled
Create Docker image (unstable) / deploy (push) Has been cancelled

This commit is contained in:
Mohammed Qureshi (Nova Cat) 2025-06-16 18:11:31 -07:00
parent 9a6ae89010
commit 0d65741ab9

View file

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