dst/Dockerfile

10 lines
113 B
Docker

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