Rename to gymnasium in Dockerfile

This commit is contained in:
pseudo-rnd-thoughts
2022-09-08 10:19:10 +01:00
parent 47ba48b611
commit 2526810e85

View File

@@ -23,9 +23,9 @@ RUN apt-get -y update \
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/root/.mujoco/mujoco210/bin"
COPY . /usr/local/gym/
WORKDIR /usr/local/gym/
COPY . /usr/local/gymnasium/
WORKDIR /usr/local/gymnasium/
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
ENTRYPOINT ["/usr/local/gym/bin/docker_entrypoint"]
ENTRYPOINT ["/usr/local/gymnasium/bin/docker_entrypoint"]