forked from automuteus/automuteus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (20 loc) · 675 Bytes
/
Dockerfile
File metadata and controls
29 lines (20 loc) · 675 Bytes
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
FROM golang:1.15-alpine AS builder
# Git is required for getting the dependencies.
RUN apk add --no-cache git
WORKDIR /src
# Fetch dependencies first; they are less susceptible to change on every build
# and will therefore be cached for speeding up the next build
COPY ./go.mod ./go.sum ./
RUN go mod download
# Import the code from the context.
COPY ./ ./
# Build the executable to `/app`. Mark the build as statically linked.
RUN CGO_ENABLED=0 go build \
-installsuffix 'static' \
-o /app .
FROM alpine AS final
# Import the compiled executable from the first stage.
COPY --from=builder /app /app
EXPOSE 8123
# Run the compiled binary.
ENTRYPOINT ["/app"]