silaseic commited on
Commit
3cd1997
1 Parent(s): d039b13

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -4,6 +4,9 @@ FROM nvidia/cuda:11.4.1-base-ubuntu20.04
4
  # Install Python and other dependencies
5
  RUN apt-get update && apt-get install -y python3 python3-pip libgl1-mesa-glx
6
 
 
 
 
7
  # Install the Python dependencies
8
  WORKDIR /code
9
  COPY ./requirements.txt /code/requirements.txt
 
4
  # Install Python and other dependencies
5
  RUN apt-get update && apt-get install -y python3 python3-pip libgl1-mesa-glx
6
 
7
+ # Install the libglib2.0-0 package
8
+ RUN apt-get update && apt-get install -y libglib2.0-0
9
+
10
  # Install the Python dependencies
11
  WORKDIR /code
12
  COPY ./requirements.txt /code/requirements.txt