Skip to content

Commit

Permalink
fix: docker base image upgrade (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
fenos authored Jun 6, 2024
1 parent 4aeb415 commit 04df155
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ jobs:
src: docker.io/supabase/storage-api:${{ inputs.version }}
dst: |
public.ecr.aws/supabase/storage-api:${{ inputs.version }}
public.ecr.aws/supabase/storage-api:latest
ghcr.io/supabase/storage-api:${{ inputs.version }}
ghcr.io/supabase/storage-api:latest
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
ghcr.io/supabase/storage-api
tags: |
type=raw,value=v${{ needs.release.outputs.version }}
type=raw,value=latest
- uses: docker/setup-qemu-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base stage for shared environment setup
FROM node:20-alpine as base
FROM node:20-alpine3.20 as base
RUN apk add --no-cache g++ make python3
WORKDIR /app
COPY package.json package-lock.json ./
Expand Down

0 comments on commit 04df155

Please sign in to comment.