From 41742a03638a9563c7472935b2874f9095ac30cf Mon Sep 17 00:00:00 2001 From: andrewso <9V5f1FkzI2LD> Date: Mon, 24 Feb 2020 11:49:18 +0000 Subject: [PATCH] [24.02.20] Instead of copying do git clone --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d72af00..b29a959 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM python:3.7-alpine MAINTAINER Andrew Sotheran RUN apk update && \ - apk add py-pip libc-dev gcc + apk add py-pip libc-dev gcc git RUN pip install utils pycryptodome && \ pip install python-env coinbase -COPY /* /home/price-collector/ +RUN git clone https://github.com/andyjk15/price-collector.git EXPOSE 9090 -CMD ["python", "/home/price-collector/main.py"] \ No newline at end of file +CMD ["python", "/home/price-collector/src/main.py"] \ No newline at end of file