reproxy/Dockerfile

36 lines
962 B
Docker
Raw Normal View History

2023-02-27 23:43:41 +03:00
FROM golang:1.20-alpine as backend
2021-04-04 06:26:53 +03:00
ARG GIT_BRANCH
ARG GITHUB_SHA
ARG CI
ENV GOFLAGS="-mod=vendor"
ENV CGO_ENABLED=0
2021-04-04 06:26:53 +03:00
ADD . /build
WORKDIR /build
2021-04-14 11:26:20 +03:00
RUN apk add --no-cache --update git tzdata ca-certificates
2021-04-04 06:26:53 +03:00
RUN \
if [ -z "$CI" ] ; then \
2021-04-12 01:10:40 +03:00
echo "runs outside of CI" && version=$(git rev-parse --abbrev-ref HEAD)-$(git log -1 --format=%h)-$(date +%Y%m%dT%H:%M:%S); \
2021-04-04 06:26:53 +03:00
else version=${GIT_BRANCH}-${GITHUB_SHA:0:7}-$(date +%Y%m%dT%H:%M:%S); fi && \
echo "version=$version" && \
cd app && go build -o /build/reproxy -ldflags "-X main.revision=${version} -s -w"
2023-02-27 23:43:41 +03:00
FROM ghcr.io/umputun/baseimage/app:v1.11.0 as base
2021-04-14 11:26:20 +03:00
FROM scratch
ENV REPROXY_IN_DOCKER=1
2021-04-11 22:22:15 +03:00
2021-04-04 06:26:53 +03:00
COPY --from=backend /build/reproxy /srv/reproxy
COPY --from=base /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=base /etc/passwd /etc/passwd
COPY --from=base /etc/group /etc/group
2021-04-04 06:26:53 +03:00
2021-04-14 11:26:20 +03:00
WORKDIR /srv
ENTRYPOINT ["/srv/reproxy"]