Files
pyprotest/Dockerfile

7 lines
124 B
Docker

FROM docker.io/python:3.10-alpine
COPY . src
RUN cd src && pip install --no-cache-dir .
CMD ["python", "-m", "pyprotest"]