abb28716c8
This change adds logic to the docker-image-unit-tests to ensure that code is checked within the container for coverage, valid test data, and reduces the number of containers created in the gate - reducing the runtime of each gate. Relates-To: #81 Change-Id: Iab3d9bd74266d32404e6eb06ecebc234df04fd5c Signed-off-by: Alexander Hughes <Alexander.Hughes@pm.me>
20 lines
548 B
Docker
20 lines
548 B
Docker
ARG GO_IMAGE=docker.io/golang:1.13.1-stretch
|
|
ARG RELEASE_IMAGE=scratch
|
|
FROM ${GO_IMAGE} as builder
|
|
|
|
SHELL [ "/bin/bash", "-cex" ]
|
|
WORKDIR /usr/src/airshipctl
|
|
|
|
# Take advantage of caching for dependency acquisition
|
|
COPY go.mod go.sum /usr/src/airshipctl/
|
|
RUN go mod download
|
|
|
|
COPY . /usr/src/airshipctl/
|
|
ARG MAKE_TARGET=build
|
|
RUN for target in $MAKE_TARGET; do make $target; done
|
|
|
|
FROM ${RELEASE_IMAGE} as release
|
|
COPY --from=builder /usr/src/airshipctl/bin/airshipctl /usr/local/bin/airshipctl
|
|
USER 65534
|
|
ENTRYPOINT [ "/usr/local/bin/airshipctl" ]
|