зеркало из https://github.com/Azure/ARO-RP.git
18 строки
398 B
Docker
18 строки
398 B
Docker
# Uses a multi-stage container build to build the proxy
|
|
#
|
|
ARG REGISTRY
|
|
FROM ${REGISTRY}/ubi8/go-toolset:1.18.10 AS builder
|
|
USER root
|
|
ENV GOPATH=/root/go
|
|
RUN mkdir -p /app
|
|
WORKDIR /app
|
|
|
|
RUN make proxy
|
|
|
|
FROM ${REGISTRY}/ubi8/ubi-minimal
|
|
RUN microdnf update && microdnf clean all
|
|
COPY --from=builder /go/src/github.com/Azure/ARO-RP/proxy /usr/local/bin/
|
|
ENTRYPOINT ["proxy"]
|
|
EXPOSE 8443/tcp
|
|
USER 1000
|