Files
docker-hoster/Dockerfile
T
2015-11-02 21:46:56 -05:00

12 lines
143 B
Docker

FROM frolvlad/alpine-python3
RUN pip3 install docker-py
RUN mkdir /hoster
WORKDIR /hoster
COPY ./hoster.py .
CMD ["python3", "hoster.py"]