dst/Dockerfile

9 lines
108 B
Docker

FROM python:3-alpine
ADD dst.py /
RUN pip install docker
VOLUME [ "/data" ]
CMD [ "python", "./dst.py" ]