gate-editor-tool/Dockerfile
2024-12-15 00:47:32 +01:00

10 lines
120 B
Docker

FROM python:3.9-slim-buster
WORKDIR /app
COPY script.py ./
RUN pip install flask pyyaml
CMD ["python", "script.py"]