-
Notifications
You must be signed in to change notification settings - Fork 28
/
Dockerfile
40 lines (30 loc) · 1.37 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
#########################################################
# Build the sources and provide the result in a multi stage
# docker container. The alpine build image has to match
# the alpine image in the referencing runtime container.
#########################################################
FROM golang:1.12.7-alpine3.10 AS builder
RUN apk --no-cache add git
# Directory in workspace
WORKDIR "/go/src/github.com/Peripli/service-manager"
ENV GO111MODULE=on
# Copy and build source code
COPY . ./
# Ensure dependencies are satisfied
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -ldflags "$(build/ldflags)" -o /main main.go
########################################################
# Build the runtime container
########################################################
FROM alpine:3.10 AS package_step
RUN apk add --no-cache ca-certificates
WORKDIR /app
# Copy the executable file
COPY --from=builder /main /app/
# Copy migration scripts
COPY --from=builder /go/src/github.com/Peripli/service-manager/storage/postgres/migrations/ /app/
COPY --from=builder /go/src/github.com/Peripli/service-manager/application.yml /app/
# If one wants to use migrations scripts from somewhere else, overriding this env var would override the scripts from the image
ENV STORAGE_MIGRATIONS_URL=file:///app
ENV DISABLED_QUERY_PARAMETERS=environment
EXPOSE 8080
ENTRYPOINT [ "./main" ]