Fix dockerfile requirements

This commit is contained in:
Anna Sidwell 2018-12-02 01:58:00 +00:00
parent e8e1d2cff6
commit 377edb0412

View File

@ -51,8 +51,8 @@ RUN apt-get update && apt-get install -y gettext git
# PACKAGES
WORKDIR /app
COPY ./requirements.txt .
RUN python3 -m pip install -r requirements.txt
COPY ./requirements .
RUN python3 -m pip install -r requirements/base.txt
# APP
WORKDIR /app