meg HF staff commited on
Commit
837d2d1
·
verified ·
1 Parent(s): 488fd5c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -18,11 +18,11 @@ ENV PATH=/opt/conda/bin:$PATH
18
  WORKDIR /app
19
  COPY . /app
20
 
21
- RUN mkdir -p /.cache
22
- RUN mkdir -p /data
23
  # I'm not sure how to allow later python files used here to write to .cache without making it world-writeable.
24
- RUN chmod 777 -R /.cache
25
- RUN chmod 777 -R /data
26
 
27
 
28
  RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
 
18
  WORKDIR /app
19
  COPY . /app
20
 
21
+ RUN mkdir -p .cache
22
+ RUN mkdir -p data
23
  # I'm not sure how to allow later python files used here to write to .cache without making it world-writeable.
24
+ RUN chmod 777 -R .cache
25
+ RUN chmod 777 -R data
26
 
27
 
28
  RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \