Spaces:
Starting
on
A10G
Starting
on
A10G
Update Dockerfile
Browse files- 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
|
22 |
-
RUN mkdir -p
|
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
|
25 |
-
RUN chmod 777 -R
|
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 \
|