py.Dockerfile 286 B

12345678910111213
  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. COPY . /usr/local/minigrid/
  7. WORKDIR /usr/local/minigrid/
  8. RUN pip install .[testing] --no-cache-dir