Initial commit
This commit is contained in:
commit
f4a7a0bcdb
3 changed files with 36 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM python:3.9-bullseye
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
RUN pip3 install -r requirements.txt
|
||||
|
||||
COPY app.py app.py
|
||||
CMD ["python3", "app.py"]
|
Loading…
Add table
Add a link
Reference in a new issue