Files
ppf/Dockerfile
2025-12-20 16:52:11 +01:00

9 lines
107 B
Docker

FROM python:2.7-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "ppf.py"]