Skip to content

Commit

Permalink
swap tmux and pip order
Browse files Browse the repository at this point in the history
  • Loading branch information
amacrutherford committed Jun 13, 2024
1 parent 8dd9806 commit 269cf9d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ USER ${MYUSER}
WORKDIR /home/${MYUSER}/
COPY --chown=${MYUSER} --chmod=765 . .

#jaxmarl from source if needed, all the requirements
USER root
RUN pip install -e .

# install tmux
RUN apt-get update && \
apt-get install -y tmux

#jaxmarl from source if needed, all the requirements
RUN pip install -e .

USER ${MYUSER}

#disabling preallocation
Expand Down

0 comments on commit 269cf9d

Please sign in to comment.