You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
770 B
36 lines
770 B
FROM golang:{{.Version}}alpine AS builder
|
|
|
|
LABEL stage=gobuilder
|
|
|
|
ENV CGO_ENABLED 0
|
|
|
|
{{if .HasTimezone}}
|
|
RUN apk update --no-cache && apk add --no-cache tzdata
|
|
{{- end}}
|
|
|
|
WORKDIR /build
|
|
|
|
ADD go.mod .
|
|
ADD go.sum .
|
|
RUN go mod download
|
|
COPY . .
|
|
|
|
RUN go build -ldflags="-s -w" -o /app/{{.ExeFile}} {{.GoMainFrom}}
|
|
|
|
|
|
FROM {{.BaseImage}}
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
{{if .HasTimezone -}}
|
|
COPY --from=builder /usr/share/zoneinfo/{{.Timezone}} /usr/share/zoneinfo/{{.Timezone}}
|
|
ENV TZ {{.Timezone}}
|
|
{{end}}
|
|
WORKDIR /app
|
|
COPY --from=builder /app/{{.ExeFile}} /app/{{.ExeFile}}
|
|
{{if .Argument -}}
|
|
COPY {{.GoRelPath}}/etc /app/etc
|
|
{{- end}}
|
|
{{if .HasPort}}
|
|
EXPOSE {{.Port}}
|
|
{{end}}
|
|
CMD ["./{{.ExeFile}}"{{.Argument}}]
|
|
|