Spaces:
Paused
Paused
Suprhimp
commited on
Commit
·
561087f
1
Parent(s):
d1e4f34
update
Browse files- Dockerfile +1 -1
- utils/settings.py +1 -1
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
7 |
RUN apt-cache search mesa
|
8 |
RUN apt-get update && apt-get install -y libgl1-mesa-glx libosmesa6
|
9 |
RUN apt-get install -y python3-opengl
|
10 |
-
RUN apt-get
|
11 |
# Run the command inside your image filesystem
|
12 |
RUN pip install --upgrade pip && \
|
13 |
pip install gym && \
|
|
|
7 |
RUN apt-cache search mesa
|
8 |
RUN apt-get update && apt-get install -y libgl1-mesa-glx libosmesa6
|
9 |
RUN apt-get install -y python3-opengl
|
10 |
+
RUN apt-get upgrade -y && apt-get install -y python3-pip python-is-python3 && rm -rf /var/lib/apt/lists/*
|
11 |
# Run the command inside your image filesystem
|
12 |
RUN pip install --upgrade pip && \
|
13 |
pip install gym && \
|
utils/settings.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
|
2 |
from OpenGL.GL import *
|
3 |
|
4 |
-
from ColorMatrix import ColorMatrix
|
5 |
|
6 |
|
7 |
def set_uniform(uniform_name, value, type, shader_program):
|
|
|
1 |
|
2 |
from OpenGL.GL import *
|
3 |
|
4 |
+
from utils.ColorMatrix import ColorMatrix
|
5 |
|
6 |
|
7 |
def set_uniform(uniform_name, value, type, shader_program):
|