19 lines
378 B
Docker
19 lines
378 B
Docker
FROM golang:1.22.3-alpine3.20
|
|
ENV GO111MODULE=on
|
|
ENV CGO_ENABLED=0
|
|
ENV GOOS=linux
|
|
|
|
RUN apk add --no-cache make git bash
|
|
|
|
WORKDIR /go/src/github.com/supabase/auth
|
|
|
|
# Pulling dependencies
|
|
COPY ./Makefile ./go.* ./
|
|
|
|
# Production dependencies
|
|
RUN make deps
|
|
|
|
# Development dependences
|
|
RUN go get github.com/githubnemo/CompileDaemon
|
|
RUN go install github.com/githubnemo/CompileDaemon
|