Skip to content
Open
Show file tree
Hide file tree
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 docker/server-everything.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ COPY internal/ui/input.css ./
COPY internal/ui/templates/ templates/
RUN npm run css:build

FROM golang:1.26.3-alpine AS seccomp-compiler
FROM golang:1.26.5-alpine AS seccomp-compiler
RUN apk add --no-cache build-base libseccomp-dev
ENV GOTOOLCHAIN=local
WORKDIR /src
Expand All @@ -36,7 +36,7 @@ COPY internal/seccomp/blockyard-bwrap.json /tmp/bwrap-seccomp.json
RUN CGO_ENABLED=1 go build -o /seccomp-compile ./cmd/seccomp-compile && \
/seccomp-compile -in /tmp/bwrap-seccomp.json -out /blockyard-bwrap-seccomp.bpf

FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.5-alpine AS builder

ENV GOTOOLCHAIN=local
WORKDIR /src
Expand Down
4 changes: 2 additions & 2 deletions docker/server-process.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN npm run css:build
# JSON profile to BPF via libseccomp-golang. The resulting blob is
# loaded by bwrap at worker spawn time via --seccomp <fd>. Only the
# output is copied forward; the CGO binary itself is discarded.
FROM golang:1.26.3-alpine AS seccomp-compiler
FROM golang:1.26.5-alpine AS seccomp-compiler
RUN apk add --no-cache build-base libseccomp-dev
ENV GOTOOLCHAIN=local
WORKDIR /src
Expand All @@ -43,7 +43,7 @@ COPY internal/seccomp/blockyard-bwrap.json /tmp/bwrap-seccomp.json
RUN CGO_ENABLED=1 go build -o /seccomp-compile ./cmd/seccomp-compile && \
/seccomp-compile -in /tmp/bwrap-seccomp.json -out /blockyard-bwrap-seccomp.bpf

FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.5-alpine AS builder

ENV GOTOOLCHAIN=local
WORKDIR /src
Expand Down
2 changes: 1 addition & 1 deletion docker/server.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY internal/ui/input.css ./
COPY internal/ui/templates/ templates/
RUN npm run css:build

FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.5-alpine AS builder

ENV GOTOOLCHAIN=local
WORKDIR /src
Expand Down
Loading