Skip to content

Commit

Permalink
Updated the pip install poetry lines in the docker files to contain -…
Browse files Browse the repository at this point in the history
…-upgrade. (vwxyzjn#326)
  • Loading branch information
LooseTerrifyingSpaceMonkey authored Nov 28, 2022
1 parent c515aef commit 9877c0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN sudo apt-get update && \

# install python dependencies
RUN mkdir cleanrl_utils && touch cleanrl_utils/__init__.py
RUN pip install poetry
RUN pip install poetry --upgrade
RUN poetry config virtualenvs.in-project true

# install mujoco
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN ln -s /usr/bin/python3 /usr/bin/python

# install python dependencies
RUN mkdir cleanrl_utils && touch cleanrl_utils/__init__.py
RUN pip install poetry
RUN pip install poetry --upgrade
COPY pyproject.toml pyproject.toml
COPY poetry.lock poetry.lock
RUN poetry install
Expand Down

0 comments on commit 9877c0c

Please sign in to comment.