From 8664bac978de7005ee84f69b791fd804109e3b04 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 23 Dec 2019 19:50:07 -0900 Subject: [PATCH] Revert changes which broke Dockerfile --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a28462..96878e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,11 +29,11 @@ RUN pip install virtualenv WORKDIR /code -COPY /code/geeksbot_v2/requirements/base.txt . -COPY /code/geeksbot_v2/requirements/production.txt . -COPY /code/geeksbot_v2/requirements/geeksbot.txt . -COPY /code/geeksbot_v2/.env . -COPY /code/geeksbot_v2/entrypoint . +COPY requirements/base.txt . +COPY requirements/production.txt . +COPY requirements/geeksbot.txt . +COPY .env . +COPY entrypoint . RUN pip install -r production.txt RUN pip install -r geeksbot.txt