Files
Gymnasium/py.Dockerfile

32 lines
1.0 KiB
Docker
Raw Normal View History

2022-09-08 10:58:14 +01:00
# A Dockerfile that sets up a full Gymnasium install with test dependencies
ARG PYTHON_VERSION
FROM python:$PYTHON_VERSION
2022-07-06 23:49:28 +10:00
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2022-07-06 23:49:28 +10:00
RUN apt-get -y update \
&& apt-get install --no-install-recommends -y \
unzip \
libglu1-mesa-dev \
libgl1-mesa-dev \
libosmesa6-dev \
xvfb \
patchelf \
ffmpeg cmake \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
# Download mujoco
&& mkdir /root/.mujoco \
&& cd /root/.mujoco \
&& wget -qO- 'https://github.com/deepmind/mujoco/releases/download/2.1.0/mujoco210-linux-x86_64.tar.gz' | tar -xzvf -
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/root/.mujoco/mujoco210/bin"
2022-09-08 10:19:10 +01:00
COPY . /usr/local/gymnasium/
WORKDIR /usr/local/gymnasium/
2022-07-06 23:49:28 +10:00
RUN if [ "python:${PYTHON_VERSION}" = "python:3.6.15" ] ; then pip install .[box2d,classic_control,toy_text,other] pytest=="7.0.1" --no-cache-dir; else pip install .[testing] --no-cache-dir; fi
2019-05-10 16:07:48 -07:00
2022-09-08 10:19:10 +01:00
ENTRYPOINT ["/usr/local/gymnasium/bin/docker_entrypoint"]