mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
35 lines
1.3 KiB
Docker
35 lines
1.3 KiB
Docker
FROM fedora:37@sha256:23c63666eefb64cd2364e6d8ad327f06abf9eb1f34b621e9fd6c1602e142244b as build
|
|
|
|
RUN dnf -y update && \
|
|
dnf -y install libvirt-devel @development-tools pkg-config wget git && \
|
|
dnf clean all
|
|
|
|
ARG GO_VER=1.19.5
|
|
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
|
|
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
|
|
rm go${GO_VER}.linux-amd64.tar.gz
|
|
ENV PATH ${PATH}:/usr/local/go/bin
|
|
|
|
WORKDIR /qemu-metadata-api
|
|
# Necessary to make `go mod download all` work while having a local replace rule in the root-go.mod.
|
|
COPY operators/constellation-node-operator/api/go.mod ./operators/constellation-node-operator/api/go.mod
|
|
COPY operators/constellation-node-operator/api/go.sum ./operators/constellation-node-operator/api/go.sum
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
RUN go mod download all
|
|
|
|
WORKDIR /qemu-metadata-api/hack
|
|
COPY hack/go.mod ./go.mod
|
|
COPY hack/go.sum ./go.sum
|
|
RUN go mod download all
|
|
|
|
COPY . /qemu-metadata-api
|
|
WORKDIR /qemu-metadata-api/hack/qemu-metadata-api
|
|
RUN go build -o api-server ./main.go
|
|
|
|
FROM fedora:37@sha256:23c63666eefb64cd2364e6d8ad327f06abf9eb1f34b621e9fd6c1602e142244b as release
|
|
RUN dnf -y install libvirt-devel && \
|
|
dnf clean all
|
|
COPY --from=build /qemu-metadata-api/hack/qemu-metadata-api/api-server /server
|
|
ENTRYPOINT [ "/server" ]
|