This commit is contained in:
commit
79492a47c8
4 changed files with 141 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.12-alpine
|
||||
|
||||
STOPSIGNAL SIGINT
|
||||
EXPOSE 80/tcp
|
||||
|
||||
WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY app.py .
|
||||
CMD ["python3", "-u", "app.py"]
|
Loading…
Add table
Add a link
Reference in a new issue