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
6 changes: 5 additions & 1 deletion cannon/Dockerfile.diff
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM golang:1.24.10-alpine3.21 AS builder

RUN apk add --no-cache bash just
# Install just from GitHub releases to match the version pinned in mise.toml.
# The Alpine package is too old and doesn't support the [script] attribute
# used in testdata justfiles.
RUN apk add --no-cache bash curl && \
curl -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin --tag 1.46.0

COPY ./go.mod /app/go.mod
COPY ./go.sum /app/go.sum
Expand Down