-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
41 lines (29 loc) · 1.06 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
ARG BRANCH
ARG BUILD_TIMESTAMP
ARG COMMIT_HASH
ARG VERSION
FROM golang:1.23 AS downloader
WORKDIR /
COPY ./ /
RUN apt install -y \
ca-certificates
RUN --mount=type=cache,target=/root/.local/share/golang \
--mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
go mod download
FROM downloader AS builder
RUN --mount=type=cache,target=/root/.local/share/golang \
--mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
CGO_ENABLED=0 go build -a -o toonamiaftermath-cli -ldflags \
"-X 'main.Branch=${BRANCH:-N/A}' \
-X 'main.BuildTimestamp=${BUILD_TIMESTAMP:-N/A}' \
-X 'main.CommitHash=${COMMIT_HASH:-N/A}' \
-X 'main.Version=${VERSION:-N/A}'" \
main.go
FROM scratch
COPY --from=builder /toonamiaftermath-cli .
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
USER 10000
ENV CACHE_FILE=/config/cache.json
ENTRYPOINT ["./toonamiaftermath-cli", "run", "--config", "/config/config.yaml"]