Missing RUN command in Dockerfile

This commit is contained in:
Bruno Alla 2020-06-29 21:52:10 +01:00
parent bed885f001
commit 9af7b3ad6d

View File

@ -22,7 +22,7 @@ RUN apt-get update \
# Requirements are installed here to ensure they will be cached. # Requirements are installed here to ensure they will be cached.
COPY ./requirements /requirements COPY ./requirements /requirements
# All imports needed for autodoc. # All imports needed for autodoc.
pip install -r /requirements/local.txt -r /requirements/production.txt RUN pip install -r /requirements/local.txt -r /requirements/production.txt
WORKDIR /docs WORKDIR /docs