Spaces:
Sleeping
Sleeping
use updated config
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -18,11 +18,11 @@ RUN pip install -U "geemap[workshop]"
|
|
18 |
COPY requirements.txt .
|
19 |
RUN pip install -r requirements.txt
|
20 |
|
21 |
-
RUN mkdir ./pages
|
22 |
-
COPY /pages ./pages
|
23 |
|
24 |
-
RUN mkdir ./data
|
25 |
-
COPY /data ./data
|
26 |
|
27 |
ENV PROJ_LIB='/opt/conda/share/proj'
|
28 |
|
|
|
18 |
COPY requirements.txt .
|
19 |
RUN pip install -r requirements.txt
|
20 |
|
21 |
+
RUN --chown=user mkdir ./pages
|
22 |
+
COPY --chown=user /pages ./pages
|
23 |
|
24 |
+
RUN --chown=user mkdir ./data
|
25 |
+
COPY --chown=user /data ./data
|
26 |
|
27 |
ENV PROJ_LIB='/opt/conda/share/proj'
|
28 |
|