From 386b3e42ceab328ae7717a6df77b17b68ecdc46c Mon Sep 17 00:00:00 2001 From: Martin Jablecnik Date: Mon, 30 Oct 2017 16:08:51 +0100 Subject: [PATCH] improved Dockerfile --- Dockerfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e4c1a4..f1d0408 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,12 @@ FROM python:2.7 WORKDIR /app -RUN pip install requests -RUN pip install baker -RUN pip install websocket-client +RUN pip install \ + requests==2.18.4 \ + baker==1.3 \ + websocket-client==0.44.0 -ENTRYPOINT ["/app/gaucho"] COPY services.py /app/gaucho -RUN chmod +x /app/gaucho \ No newline at end of file +RUN chmod +x /app/gaucho + +ENTRYPOINT ["/app/gaucho"]