Skip to content

Commit ae86ab3

Browse files
fix: ensure software-properties-common is installed before adding PPA in Dockerfile
1 parent c82a591 commit ae86ab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/docker/py.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:$PYTHON_VERSION
44

55
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
66

7-
RUN add-apt-repository ppa:ubuntu-toolchain-r/test && apt-get -y update && apt-get install -y unzip libglu1-mesa-dev libgl1-mesa-dev libosmesa6-dev xvfb patchelf ffmpeg cmake swig gcc-9 g++-9
7+
RUN apt install software-properties-common && add-apt-repository ppa:ubuntu-toolchain-r/test && apt-get -y update && apt-get install -y unzip libglu1-mesa-dev libgl1-mesa-dev libosmesa6-dev xvfb patchelf ffmpeg cmake swig gcc-9 g++-9
88

99
# Download mujoco
1010
RUN mkdir /root/.mujoco \

0 commit comments

Comments
 (0)