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
+2 -2
View File
@@ -1,8 +1,8 @@
FROM python:3.10.6-slim
# Install app
COPY . /usr/app
WORKDIR /usr/app
COPY . /app
WORKDIR /app
# Install dependencies
RUN pip install --upgrade pip && pip install -r requirements.txt