promptsai commited on
Commit
1832822
·
verified ·
1 Parent(s): 431b044

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -8,9 +8,9 @@ WORKDIR /code
8
  ENV MPLCONFIGDIR=/tmp/matplotlib_cache
9
  ENV XDG_CACHE_HOME=/tmp/cache
10
 
11
- # Create the directories and ensure permissions
12
- RUN mkdir -p /tmp/cache \
13
- && chmod -R 777 /tmp
14
 
15
  # Install libGL for OpenCV
16
  RUN apt-get update && apt-get install -y \
 
8
  ENV MPLCONFIGDIR=/tmp/matplotlib_cache
9
  ENV XDG_CACHE_HOME=/tmp/cache
10
 
11
+ # Create and set permissions for the gdown cache directory
12
+ RUN mkdir -p /.cache/gdown \
13
+ && chmod -R 777 /.cache
14
 
15
  # Install libGL for OpenCV
16
  RUN apt-get update && apt-get install -y \