feat: reduce compile gotrue image size

This commit is contained in:
Fu Zi Xiang 2023-11-24 16:53:06 +08:00
parent 309ce16f44
commit 51fbca057e
No known key found for this signature in database
1 changed files with 16 additions and 3 deletions

View File

@ -1,6 +1,19 @@
FROM golang
FROM golang as base
WORKDIR /go/src/supabase
RUN git clone https://github.com/supabase/gotrue.git
WORKDIR /go/src/supabase/gotrue
RUN git checkout e67a10c1 && go install
CMD ["gotrue"]
RUN git checkout e67a10c1 && \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64 \
go build -o /gotrue .
FROM scratch
COPY --from=base /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=base /etc/passwd /etc/passwd
COPY --from=base /etc/group /etc/group
COPY --from=base /gotrue .
CMD ["./gotrue"]