3 changed files with 16 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||||||
|
__pycache__/ |
||||||
|
venv/ |
||||||
|
.woodpecker/ |
||||||
|
Dockerfile |
||||||
|
.git |
||||||
|
.gitignore |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
FROM python:3.10-alpine |
||||||
|
COPY requirements.txt / |
||||||
|
RUN pip3 install -r /requirements.txt |
||||||
|
|
||||||
|
COPY . /app |
||||||
|
WORKDIR /app |
||||||
|
|
||||||
|
ENTRYPOINT ["./gunicorn.sh"] |
||||||
Loading…
Reference in new issue