forked from RedHatInsights/edge-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
67 lines (53 loc) · 2.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
############################################
# STEP 1: build executable edge-api binaries
############################################
FROM registry.access.redhat.com/ubi9/go-toolset:1.21 AS edge-builder
USER root
WORKDIR $GOPATH/src/github.com/RedHatInsights/edge-api/
COPY . .
# Download dependencies
RUN go get -d -v
# Build the binary.
RUN go build -o /go/bin/edge-api
# Build the migration binary.
RUN go build -o /go/bin/edge-api-migrate cmd/migrate/main.go
RUN go build -o /go/bin/edge-api-wipe cmd/db/wipe.go
RUN go build -o /go/bin/edge-api-migrate-device cmd/db/updDb/set_account_on_device.go
RUN go build -o /go/bin/edge-api-migrate-repositories cmd/migraterepos/main.go
RUN go build -o /go/bin/edge-api-migrate-groups cmd/migrategroups/main.go
# Run the doc binary
RUN go install github.com/swaggo/swag/cmd/swag@latest
RUN ~/go/bin/swag init --generalInfo api.go --o ./cmd/spec/ --dir pkg/models,pkg/routes --parseDependency
RUN go run cmd/swagger2openapi/main.go cmd/spec/swagger.json cmd/spec/openapi.json
# Build the microservice binaries
RUN go build -o /go/bin/edge-api-ibvents cmd/kafka/main.go
# Build utilities binaries
RUN go build -o /go/bin/edge-api-cleanup cmd/cleanup/main.go
####################################
# STEP 2: build edge-api minimal image
####################################
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
LABEL maintainer="Red Hat, Inc."
# label for EULA
LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"
# labels for container catalog
LABEL summary="edge-api minimal image"
LABEL description="The edge-api project is an API server for fleet edge management capabilities."
LABEL io.k8s.display-name="edge-api-minimal"
ENV EDGE_API_WORKSPACE /src/github.com/RedHatInsights/edge-api
# Copy the edge-api binaries into the image.
COPY --from=edge-builder /go/bin/edge-api /usr/bin
COPY --from=edge-builder /go/bin/edge-api-migrate /usr/bin
COPY --from=edge-builder /go/bin/edge-api-wipe /usr/bin
COPY --from=edge-builder /go/bin/edge-api-migrate-device /usr/bin
COPY --from=edge-builder /go/bin/edge-api-migrate-repositories /usr/bin
COPY --from=edge-builder /go/bin/edge-api-migrate-groups /usr/bin
COPY --from=edge-builder /go/bin/edge-api-ibvents /usr/bin
COPY --from=edge-builder /go/bin/edge-api-cleanup /usr/bin
COPY --from=edge-builder ${EDGE_API_WORKSPACE}/cmd/spec/openapi.json /var/tmp
RUN microdnf install -y coreutils-single glibc-minimal-langpack \
isomd5sum file ostree && microdnf clean all
# template to playbook dispatcher
COPY --from=edge-builder ${EDGE_API_WORKSPACE}/templates/template_playbook_dispatcher_ostree_upgrade_payload.yml /usr/local/etc
USER 1001
CMD ["edge-api"]