mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2025-03-15 19:48:10 +00:00
11 lines
259 B
Text
11 lines
259 B
Text
|
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()'"]
|