sohamnk commited on
Commit
8b6199a
·
verified ·
1 Parent(s): 0991c31

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -6,13 +6,12 @@ WORKDIR /code
6
  ENV HF_HOME=/tmp/huggingface_cache
7
  ENV TORCH_HOME=/tmp/torch_cache
8
 
9
- # explicitly create cache directory
10
  RUN mkdir -p $HF_HOME && chmod -R 777 $HF_HOME
11
  RUN mkdir -p $TORCH_HOME && chmod -R 777 $TORCH_HOME
12
 
13
- # dependency req by open cv
14
  RUN apt-get update && apt-get install -y \
15
- libgl1-mesa-glx \
16
  libglib2.0-0 \
17
  && rm -rf /var/lib/apt/lists/*
18
 
 
6
  ENV HF_HOME=/tmp/huggingface_cache
7
  ENV TORCH_HOME=/tmp/torch_cache
8
 
 
9
  RUN mkdir -p $HF_HOME && chmod -R 777 $HF_HOME
10
  RUN mkdir -p $TORCH_HOME && chmod -R 777 $TORCH_HOME
11
 
12
+
13
  RUN apt-get update && apt-get install -y \
14
+ libgl1 \
15
  libglib2.0-0 \
16
  && rm -rf /var/lib/apt/lists/*
17