Lots of changes

This commit is contained in:
Dustin Pianalto
2019-09-14 11:28:53 -08:00
parent da60570aee
commit a47890f366
25 changed files with 1657 additions and 21 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM base AS geeksbot
WORKDIR /code
COPY requirements/base.txt .
COPY requirements/production.txt .
COPY requirements/geeksbot.txt .
RUN pip install -r production.txt
RUN pip install -r geeksbot.txt
CMD ["python", "-m", "geeksbot"]