This directory contains the Dockerfile for building marimo Docker images.
marimo-slim: Minimal image with just marimo installedmarimo-data: Includes marimo plus data science packages (pandas, numpy, altair) and marimo[recommended,lsp]marimo-sql: Extends the data image with SQL support (marimo[recommended,lsp,sql])
To build all images, from the root
# Build your image, and tag it as my_app
docker build -t my_app . -f docker/Dockerfile
# Start your container, mapping port 8080
docker run -p 8080:8080 -it my_app
# Visit http://localhost:8080