Update Dockerfile and user-data for AWS LC use

This commit is contained in:
Dustin Pianalto
2019-12-23 19:38:49 -09:00
parent 48621aac95
commit db17e16351
2 changed files with 14 additions and 5 deletions
+5 -5
View File
@@ -29,11 +29,11 @@ RUN pip install virtualenv
WORKDIR /code
COPY requirements/base.txt .
COPY requirements/production.txt .
COPY requirements/geeksbot.txt .
COPY .env .
COPY entrypoint .
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 .
RUN pip install -r production.txt
RUN pip install -r geeksbot.txt