From 3b2ed478de8e0af666d89bd629a89a934a7befa8 Mon Sep 17 00:00:00 2001 From: David Darias Date: Mon, 2 Nov 2015 22:22:43 -0500 Subject: [PATCH] Fixed dockerfile ADD command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f023c1..6ac4ebb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM frolvlad/alpine-python3 RUN pip3 install docker-py RUN mkdir /hoster WORKDIR /hoster -COPY ./hoster.py . +ADD hoster.py /hoster/ CMD ["python3", "hoster.py"]