Skip to content

Commit

Permalink
still install pip requirements on docker
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTedrake committed Jan 21, 2024
1 parent 665a788 commit e849980
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ LABEL org.opencontainers.image.vendor="Massachusetts Institute of Technology"
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8
COPY requirements.txt /tmp/requirements.txt
COPY setup/docker/pip.conf /root/.config/pip/pip.conf
COPY setup/ubuntu/22.04/install_prereqs.sh /tmp/
RUN /tmp/install_prereqs.sh
RUN apt -y install xvfb git nginx-light
RUN pip3 install pyvirtualdisplay
RUN pip3 install -r /tmp/requirements.txt pyvirtualdisplay underactuated
RUN rm -rf /root/.cache /root/.config
RUN rm -f /tmp/install_prereqs.sh
RUN rm -f /tmp/requirements.txt
Expand Down

0 comments on commit e849980

Please sign in to comment.