Skip to content

Commit 056e11c

Browse files
committed
install requirements before setup
needed for invoke git-info
1 parent 340f441 commit 056e11c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ RUN apt-get update \
1313

1414
# Python requirements
1515
COPY ./requirements-dev.txt /srv/nbviewer/
16-
RUN python3 -mpip install --no-cache -r /srv/nbviewer/requirements-dev.txt
16+
COPY ./requirements.txt /srv/nbviewer/
17+
RUN python3 -mpip install -r /srv/nbviewer/requirements-dev.txt -r /srv/nbviewer/requirements.txt
1718

1819
WORKDIR /srv/nbviewer
1920

0 commit comments

Comments
 (0)