Files
scatcher/Dockerfile
2024-03-12 16:13:30 +02:00

13 lines
190 B
Docker

FROM python:3.12-alpine
WORKDIR /app
ENV PYTHONPATH=/app
COPY ./requirements.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]