forked from create-go-app/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
30 lines (20 loc) · 792 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
# Use this file for build a normal Docker/Podman image for Create Go App CLI.
FROM golang:1.17-alpine AS builder
LABEL maintainer="Vic Shóstak <[email protected]>"
# Move to working directory (/build).
WORKDIR /build
# Copy and download dependency using go mod.
COPY go.mod go.sum ./
RUN go mod download
# Copy the code into the container.
COPY . .
# Set necessary environment variables needed for our image and build the Create Go App CLI
ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64
RUN go build -ldflags="-s -w" -o cgapp cmd/cgapp/main.go
FROM alpine:edge
# Copy binary and config files from /build to root folder of scratch container.
COPY --from=builder ["/build/cgapp", "/"]
# Install git, npm (with nodejs).
RUN apk add --no-cache git npm
# Set entry point.
ENTRYPOINT ["/cgapp"]