This commit is contained in:
null
2024-02-29 19:25:43 +01:00
parent d27545be64
commit 5090972b73
4 changed files with 76 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:latest
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./app.py" ]