Initial commit

This commit is contained in:
Jonatan Rek
2024-10-01 15:31:04 +02:00
parent 6e5eb9592f
commit 538918329c
8 changed files with 33363 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Use PHP with Apache as the base image
FROM python:3.9-slim
#Copy Project
COPY . /app
# Install any needed dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Start Anonimization
CMD ["python", "app.py"]