2024-05-08 00:46:50 +00:00
|
|
|
FROM docker.io/library/golang:1.22.3-alpine3.18 as build
|
2021-06-14 07:53:26 +00:00
|
|
|
|
|
|
|
ARG VERSION
|
|
|
|
|
|
|
|
COPY ./ /workspace
|
|
|
|
|
2024-04-08 14:51:24 +00:00
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
|
|
RUN set -ex && \
|
|
|
|
apk update && \
|
|
|
|
apk add git make && \
|
|
|
|
make all VERSION=${VERSION}
|
2021-06-14 07:53:26 +00:00
|
|
|
|
|
|
|
# TARGET
|
|
|
|
# =====================================================================
|
2024-05-22 19:08:57 +00:00
|
|
|
FROM docker.io/library/alpine:3.20
|
2024-04-08 14:51:24 +00:00
|
|
|
|
|
|
|
ARG VERSION=latest
|
|
|
|
|
|
|
|
LABEL org.opencontainers.image.authors="Markus Pesch" \
|
|
|
|
org.opencontainers.image.description="Return the ip address of the router to forward traffic to an external ip address" \
|
|
|
|
org.opencontainers.image.documentation="https://git.cryptic.systems/volker.raschek/getpsrc#getpsrc" \
|
|
|
|
org.opencontainers.image.title="getpsrc" \
|
|
|
|
org.opencontainers.image.vendor="Markus Pesch" \
|
|
|
|
org.opencontainers.image.version="${VERSION}"
|
2021-06-14 07:53:26 +00:00
|
|
|
|
|
|
|
COPY --from=build /workspace/getpsrc /usr/bin/getpsrc
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/usr/bin/getpsrc" ]
|