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
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ FROM ghcr.io/diamondlightsource/ubuntu-devcontainer:noble AS developer
RUN apt-get update -y && apt-get install -y --no-install-recommends \
graphviz \
&& apt-get dist-clean
RUN curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v4.0.6/argo-linux-amd64.gz"
RUN gunzip "argo-linux-amd64.gz"
RUN chmod +x "argo-linux-amd64"
RUN mv "./argo-linux-amd64" /usr/local/bin/argo

# The build stage installs the context into the venv
FROM developer AS build
Expand All @@ -23,7 +27,6 @@ ENV UV_PYTHON_INSTALL_DIR=/python
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --locked --no-editable --no-dev --managed-python


# The runtime stage copies the built venv into a runtime container
FROM ubuntu:noble AS runtime

Expand Down
Loading