forked from antoniomika/sish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
53 lines (36 loc) · 1.45 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# syntax = docker/dockerfile:experimental
FROM --platform=$BUILDPLATFORM golang:1.15-alpine as builder
LABEL maintainer="Antonio Mika <[email protected]>"
ENV CGO_ENABLED 0
ARG VERSION=dev
ARG COMMIT=none
ARG DATE=unknown
ARG REPOSITORY=unknown
WORKDIR /app
RUN mkdir -p /emptydir
RUN apk add --no-cache git ca-certificates
RUN --mount=type=bind,target=/cache,from=antoniomika/sish-build-cache \
mkdir -p /go/pkg/ && cp -R /cache/mod/ /go/pkg/ || true && \
mkdir -p /root/.cache/ && cp -R /cache/go-build/ /root/.cache/ || true
COPY . .
RUN go generate ./...
RUN go test ./...
FROM scratch as build-cache
LABEL maintainer="Antonio Mika <[email protected]>"
COPY --from=builder /go/pkg/mod /mod
COPY --from=builder /root/.cache/go-build /go-build
FROM builder as build-image
ARG TARGETOS
ARG TARGETARCH
ENV GOOS=${TARGETOS} GOARCH=${TARGETARCH}
RUN go build -o /go/bin/app -ldflags="-s -w -X github.com/${REPOSITORY}/cmd.Version=${VERSION} -X github.com/${REPOSITORY}/cmd.Commit=${COMMIT} -X github.com/${REPOSITORY}/cmd.Date=${DATE}"
FROM scratch as release
LABEL maintainer="Antonio Mika <[email protected]>"
WORKDIR /app
COPY --from=build-image /emptydir /tmp
COPY --from=build-image /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=build-image /app/deploy/ /app/deploy/
COPY --from=build-image /app/README* /app/LICENSE* /app/
COPY --from=build-image /app/templates /app/templates
COPY --from=build-image /go/bin/ /app/
ENTRYPOINT ["/app/app"]