Files
ppf/Dockerfile
2025-12-20 16:46:37 +01:00

9 lines
107 B
Docker

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