This commit is contained in:
JonatanRek
2024-10-05 21:59:16 +02:00
parent e3b32d8e2a
commit 2b1d8fe587
2 changed files with 6 additions and 2 deletions
+5 -2
View File
@@ -16,5 +16,8 @@ COPY . /app
# Install any needed dependencies specified in requirements.txt # Install any needed dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt RUN pip install --no-cache-dir -r /app/requirements.txt
# Start Anonimization #Start Container
CMD ["python3", "/app/app.py"] RUN chmod +x /app/start.sh
CMD ["/app/start.sh"]
WORKDIR /app
+1
View File
@@ -0,0 +1 @@
python3 /app/app.py