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
6 lines
No EOL
151 B
Docker
6 lines
No EOL
151 B
Docker
FROM alpine:edge
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN apk add --no-cache py3-gunicorn py3-openssl py3-flask
|
|
|
|
CMD ["gunicorn", "--bind=0.0.0.0:2009", "server:app"] |