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 .github/workflows/release-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v7
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Build and push Docker image (multi-arch)
uses: RevoTale/docker-multi-arch-release-action@v1.4.0
uses: RevoTale/docker-multi-arch-release-action@139a43ddaa10e2a91bbdb8f44d4af4e9bcaa5993 # v1.4.0
with:
registry: ${{ env.REGISTRY }}
platforms: linux/amd64,linux/arm64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-imgproxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v7
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Build and push Docker image (multi-arch)
uses: RevoTale/docker-multi-arch-release-action@v1.4.0
uses: RevoTale/docker-multi-arch-release-action@139a43ddaa10e2a91bbdb8f44d4af4e9bcaa5993 # v1.4.0
with:
registry: ${{ env.REGISTRY }}
platforms: linux/amd64,linux/arm64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v7
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Build and push Docker image (multi-arch)
uses: RevoTale/docker-multi-arch-release-action@v1.4.0
uses: RevoTale/docker-multi-arch-release-action@139a43ddaa10e2a91bbdb8f44d4af4e9bcaa5993 # v1.4.0
with:
registry: ${{ env.REGISTRY }}
platforms: linux/amd64,linux/arm64
Expand Down
4 changes: 2 additions & 2 deletions devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ghcr.io/biomejs/biome:latest AS biome
FROM ghcr.io/biomejs/biome:latest@sha256:bdf4188ce40dc3caa960a893bd64f9d829e59d856241787de6fbb7e2f5ee2740 AS biome

FROM mcr.microsoft.com/vscode/devcontainers/base
FROM mcr.microsoft.com/vscode/devcontainers/base@sha256:1f851004adcd3dff3776b4a1da86727cf52280b0fdc9d5b0568c9c7d74274286

COPY --from=biome /usr/local/bin/biome /usr/local/bin/biome
4 changes: 2 additions & 2 deletions nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.27-alpine AS routesgen-builder
FROM --platform=$BUILDPLATFORM golang:1.27-alpine@sha256:cf6fca6641884b8433441b2b0652976f975e1d0fdd26d177eaaf8596087f3125 AS routesgen-builder

ARG TARGETOS
ARG TARGETARCH
Expand All @@ -13,7 +13,7 @@ COPY internal/ ./internal/

RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -trimpath -ldflags="-s -w" -o /out/routesgen ./cmd/routesgen

FROM nginx:1.31-alpine
FROM nginx:1.31-alpine@sha256:72ba65eb42c10344912a84ff42408db7d34f2feb642204570ab8fc5ffd29f1d3

COPY nginx.conf /etc/nginx/nginx.conf
COPY includes/ /etc/nginx/includes/
Expand Down