Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklambourne committed Aug 27, 2021
1 parent 796dd46 commit 53630af
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,11 @@ RUN git clone --depth=1 https://github.com/CoEDL/elpis.git
WORKDIR /elpis
RUN python -m venv /venv
ENV PATH="/venv/bin:$PATH"
RUN pip install poetry && poetry config virtualenvs.create false --local && \
poetry install
RUN pip install poetry \
&& poetry env use /venv/bin/python \
&& poetry run pip install --upgrade pip \
&& poetry config virtualenvs.create false --local \
&& poetry install

WORKDIR /

Expand Down

0 comments on commit 53630af

Please sign in to comment.