Initial commit

This commit is contained in:
Jonatan Rek
2025-01-21 11:13:51 +01:00
parent 4f6e8bee10
commit ca420b5070
4 changed files with 120 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
# Use PHP with Apache as the base image
FROM python:3.9
ENV PYTHONUNBUFFERED=1
# Install Additional System Dependencies
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y \
libgl1 \
nano
# Clear cache
RUN apt-get autoremove
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
#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", "-u", "/app/app.py"]
WORKDIR /app