Initial commit
This commit is contained in:
+11
@@ -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"]
|
||||
Reference in New Issue
Block a user