-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathDockerfile_bg_projects_refresh
More file actions
34 lines (25 loc) · 1.08 KB
/
Dockerfile_bg_projects_refresh
File metadata and controls
34 lines (25 loc) · 1.08 KB
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
FROM golang:1.25.4 as builder
ARG COMMIT_SHA
RUN echo "commit sha: ${COMMIT_SHA}"
# Set the working directory
WORKDIR $GOPATH/src/github.com/diggerhq/digger
# Copy go.mod/go.sum first for better layer caching
COPY go.mod go.sum ./
RUN go mod download
# Copy all required source, blacklist files that are not required through `.dockerignore`
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
go build -ldflags="-X 'main.Version=${COMMIT_SHA}'" -o projects_refresh_exe ./background/projects-refresh-service
# Multi-stage build will just copy the binary to an alpine image.
FROM ubuntu:24.04 as runner
ARG COMMIT_SHA
WORKDIR /app
RUN apt-get update && apt-get install -y ca-certificates curl && apt-get install -y git && apt-get clean all
RUN update-ca-certificates
RUN echo "commit sha: ${COMMIT_SHA}"
# Copy the binary to the corresponding folder
COPY --from=builder /go/src/github.com/diggerhq/digger/projects_refresh_exe /app/projects_refresh_exe
RUN chmod +x projects_refresh_exe
# Run the binary
ENTRYPOINT ["./projects_refresh_exe"]