py-old.Dockerfile 443 B

1234567891011121314151617
  1. # A Dockerfile that sets up a full Gym install with test dependencies
  2. ARG PYTHON_VERSION
  3. FROM python:$PYTHON_VERSION
  4. SHELL ["/bin/bash", "-o", "pipefail", "-c"]
  5. RUN apt-get -y update \
  6. && apt-get install --no-install-recommends -y \
  7. xvfb
  8. COPY ../.. /usr/local/minigrid/
  9. WORKDIR /usr/local/minigrid/
  10. RUN pip install .[wfc,testing] gymnasium==0.29.1 numpy==1.26.4
  11. ENTRYPOINT ["/usr/local/minigrid/.github/docker/docker_entrypoint"]