1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-17 18:31:15 +00:00
AdvLabDB/Containerfile
2022-11-19 14:09:11 +01:00

11 lines
No EOL
259 B
Docker

FROM docker.io/library/python:3.11-slim
COPY . /volumes/repo
WORKDIR /volumes/repo
RUN pip3 install -r requirements.txt
EXPOSE 80
CMD ["gunicorn", "--bind", "0.0.0.0:80", "--workers", "5", "--log-file", "/volumes/logs/gunicorn.log", "'run:create_app()'"]