Spaces:
Sleeping
Sleeping
add config
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -15,6 +15,8 @@ RUN uv sync
|
|
15 |
# Copy examples
|
16 |
COPY ./examples ./examples
|
17 |
|
18 |
-
RUN chmod -R 777 /data
|
|
|
|
|
19 |
|
20 |
CMD ["uv", "run", "marimo", "edit", "/data", "--host", "0.0.0.0", "--port", "7860", "--no-token"]
|
|
|
15 |
# Copy examples
|
16 |
COPY ./examples ./examples
|
17 |
|
18 |
+
RUN chmod -R 777 /data && \
|
19 |
+
mkdir -p /.config && \
|
20 |
+
chmod -R 777 /.config
|
21 |
|
22 |
CMD ["uv", "run", "marimo", "edit", "/data", "--host", "0.0.0.0", "--port", "7860", "--no-token"]
|