Skip to content

Commit

Permalink
ci: use alpine:3 as base image (#1894)
Browse files Browse the repository at this point in the history
Using `alpine:3` means we don't have to worry about updating the base
image often, it'll just use whatever latest.
  • Loading branch information
hf authored Dec 27, 2024
1 parent 4faea5a commit a7f1c6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ COPY . /go/src/github.com/supabase/auth
# Make sure you change the RELEASE_VERSION value before publishing an image.
RUN RELEASE_VERSION=unspecified make build

FROM alpine:3.20
# Always use alpine:3 so the latest version is used. This will keep CA certs more up to date.
FROM alpine:3
RUN adduser -D -u 1000 supabase

RUN apk add --no-cache ca-certificates
Expand Down

0 comments on commit a7f1c6e

Please sign in to comment.