12 lines
260 B
Docker
12 lines
260 B
Docker
# Use PHP with Apache as the base image
|
|
FROM python:latest
|
|
|
|
#Copy Project
|
|
COPY . /app
|
|
|
|
# Install any needed dependencies specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements.txt
|
|
|
|
# Start Anonimization
|
|
CMD ["python", "/app/app.py"]
|