Spaces:
Sleeping
Sleeping
Update Dockerfile to include code by default.
Browse filesOne of the benefits of marimo is that you can make awesome apps with little code. This change helps highlight that.
- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -13,4 +13,4 @@ RUN uv pip install -r requirements.txt
|
|
13 |
COPY --chown=user . /app
|
14 |
USER user
|
15 |
|
16 |
-
CMD ["marimo", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
13 |
COPY --chown=user . /app
|
14 |
USER user
|
15 |
|
16 |
+
CMD ["marimo", "run", "app.py", "--include-code", "--host", "0.0.0.0", "--port", "7860"]
|