update docker file

This commit is contained in:
2024-04-01 05:22:35 +02:00
parent 439bd07061
commit 683002343c
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -5,3 +5,4 @@
.vscode .vscode
.venv/ .venv/
__pycache__/ __pycache__/
history/
+2 -2
View File
@@ -1,8 +1,8 @@
FROM python:3.10.6-slim FROM python:3.10.6-slim
# Install app # Install app
COPY . /usr/app COPY . /app
WORKDIR /usr/app WORKDIR /app
# Install dependencies # Install dependencies
RUN pip install --upgrade pip && pip install -r requirements.txt RUN pip install --upgrade pip && pip install -r requirements.txt