This commit is contained in:
Jonatan Rek
2024-10-01 16:54:00 +02:00
parent 2cfa1cc9b7
commit 9a2afed1f1
4 changed files with 40 additions and 8 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ FROM python:3.9-slim
COPY . /app
# Install any needed dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
# Start Anonimization
CMD ["python", "app.py"]