Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG UBUNTU_VERSION=24.04

# Resolve SRB2_VERSION=auto to actual tag once, shared by build and gamedata stages
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 AS version
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 AS version
ARG SRB2_VERSION=auto
RUN apk add --no-cache curl jq
RUN if [ "$SRB2_VERSION" = "auto" ]; then \
Expand All @@ -28,7 +28,7 @@ RUN SRB2_VERSION=$(cat /resolved_version) && \
WORKDIR /SRB2
RUN make -j$(nproc)

FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 AS gamedata
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 AS gamedata
RUN apk add --no-cache wget unzip jq curl
COPY --from=version /resolved_version /resolved_version
RUN SRB2_VERSION=$(cat /resolved_version) && \
Expand Down