Skip to content
This repository has been archived by the owner on Oct 1, 2022. It is now read-only.

Commit

Permalink
improved Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mjablecnik committed Oct 30, 2017
1 parent 3499fc3 commit 386b3e4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
RUN chmod +x /app/gaucho

ENTRYPOINT ["/app/gaucho"]

0 comments on commit 386b3e4

Please sign in to comment.