Spaces:
Paused
Paused
Suprhimp
commited on
Commit
·
ae35813
1
Parent(s):
ab5fc39
Update Dockerfile
Browse files- 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
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
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
|