Suprhimp commited on
Commit
ae35813
·
1 Parent(s): ab5fc39

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -10
Dockerfile CHANGED
@@ -9,16 +9,16 @@ RUN apt-get update && apt-get install -y libgl1-mesa-glx libosmesa6
9
  RUN apt-get install -y python3-opengl
10
 
11
  # Run the command inside your image filesystem
12
- RUN pip3 install --upgrade pip && \
13
- pip3 install gym && \
14
- pip3 install gym[atari] && \
15
- pip3 install PyOpenGL==3.1.0 && \
16
- pip3 install dm_control && \
17
- pip3 install tqdm && \
18
- pip3 install np_utils && \
19
- pip3 install Pillow && \
20
- pip3 install fastapi && \
21
- pip3 install uvicorn
22
 
23
  RUN useradd -m -u 1000 user
24
  USER user
 
9
  RUN apt-get install -y python3-opengl
10
 
11
  # Run the command inside your image filesystem
12
+ RUN pip install --upgrade pip && \
13
+ pip install gym && \
14
+ pip install gym[atari] && \
15
+ pip install PyOpenGL==3.1.0 && \
16
+ pip install dm_control && \
17
+ pip install tqdm && \
18
+ pip install np_utils && \
19
+ pip install Pillow && \
20
+ pip install fastapi && \
21
+ pip install uvicorn
22
 
23
  RUN useradd -m -u 1000 user
24
  USER user