diff --git a/Renv/jupyterlite/Dockerfile b/Renv/jupyterlite/Dockerfile
index 6f7b6b6..833d2df 100644
--- a/Renv/jupyterlite/Dockerfile
+++ b/Renv/jupyterlite/Dockerfile
@@ -1,5 +1,11 @@
 FROM eoelab.org:1027/eoeair/cenv:python
 
-RUN pip install jupyterlite-core && \
-    pip install jupyterlite-pyodide-kernel && \
-    pip cache purge 
\ No newline at end of file
+EXPOSE 8000
+
+WORKDIR /opt
+
+RUN pip install jupyterlite-core jupyterlite-pyodide-kernel && pip cache purge && \
+    jupyter lite build
+
+ENTRYPOINT [ "jupyter" ]
+CMD [ "lite", "serve" ]
\ No newline at end of file