source/Dockerfile
Pedro Jose Romero Gombau 93c9e7b91b Init
2025-01-16 16:28:45 +01:00

13 lines
305 B
Docker

FROM python:3.9-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y python3-tk python3-pil python3-pil.imagetk && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]