Skip to content

Commit 04df155

Browse files
authored
fix: docker base image upgrade (#497)
1 parent 4aeb415 commit 04df155

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/mirror.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,6 @@ jobs:
3434
src: docker.io/supabase/storage-api:${{ inputs.version }}
3535
dst: |
3636
public.ecr.aws/supabase/storage-api:${{ inputs.version }}
37+
public.ecr.aws/supabase/storage-api:latest
3738
ghcr.io/supabase/storage-api:${{ inputs.version }}
39+
ghcr.io/supabase/storage-api:latest

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
ghcr.io/supabase/storage-api
5858
tags: |
5959
type=raw,value=v${{ needs.release.outputs.version }}
60+
type=raw,value=latest
6061
6162
- uses: docker/setup-qemu-action@v2
6263
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base stage for shared environment setup
2-
FROM node:20-alpine as base
2+
FROM node:20-alpine3.20 as base
33
RUN apk add --no-cache g++ make python3
44
WORKDIR /app
55
COPY package.json package-lock.json ./

0 commit comments

Comments
 (0)