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:ba1442675a3e76d8db9eef770b0912e16826ee1f48d63a3a506c000bc33b64ac AS biome

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

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:4c9fe60190a2a3350ddc51de80d0224b8a6698d12bdfc999fee45ea9d6c46dbc 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:db35bfc6b2951e7f8a72db5db120288c127ffaeeb4a6d4b95a26fead017d5913

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