-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
36 lines (23 loc) · 998 Bytes
/
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
# Building the binary of the App
FROM golang:1.22 AS build
# `boilerplate` should be replaced with your project name
WORKDIR /go/src/pmgo
# Copy all the Code and stuff to compile everything
COPY . .
# Downloads all the dependencies in advance (could be left out, but it's more clear this way)
RUN go mod download
# Builds the application as a staticly linked one, to allow it to run on alpine
RUN cd cmd/gapi && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -o gapi && mv gapi ../../gapi && cd ../..
# Moving the binary to the 'final Image' to make it smaller
FROM alpine:latest as final
WORKDIR /app
# `boilerplate` should be replaced here as well
COPY --from=build /go/src/pmgo/gapi .
# Add packages
RUN apk -U upgrade \
&& apk add --no-cache dumb-init ca-certificates \
&& chmod +x /app/gapi
# Exposes port 3000 because our program listens on that port
EXPOSE 9900
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["./gapi", "-config", "/app/config/.env"]