init
This commit is contained in:
commit
b2f6f60d5e
3 changed files with 45 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.9-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install Flask
|
||||
|
||||
COPY main.py /app/main.py
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["python", "main.py"]
|
Loading…
Add table
Add a link
Reference in a new issue