Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions containers/Dockerfile.marimo
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN apt update --yes && \
locale-gen


ARG marimo_version=0.16.2
ARG marimo_version=0.16.4
ENV MARIMO_SKIP_UPDATE_CHECK=1
ENV UV_SYSTEM_PYTHON=1
RUN uv pip install --no-cache-dir marimo==${marimo_version} && \
Expand All @@ -51,8 +51,8 @@ RUN uv pip install --no-cache-dir marimo[recommended,lsp,sql] altair pandas pyth
pytest
RUN uv pip install --no-cache-dir 'janus-core[all]@git+https://github.com/stfc/janus-core.git@main'
RUN uv pip install --no-cache-dir cuequivariance==0.5.1 \
cuequivariance-torch==0.5.1 \
cuequivariance-ops-torch-cu12==0.5.1 \
cuequivariance-torch==0.6.1 \
cuequivariance-ops-torch-cu12==0.6.1 \
torchvision \
pack-mm \
seaborn \
Expand All @@ -63,4 +63,4 @@ RUN uv pip install --no-cache-dir cuequivariance==0.5.1 \
pymatviz \
git+https://github.com/imagdau/aseMolec@main

CMD marimo edit --no-token -p $PORT --host $HOST
CMD ["/bin/sh", "-c", "exec marimo edit --no-token -p $PORT --host $HOST"]