2021-07-08 09:17:51 +02:00
|
|
|
ARG BUILDPLATFORM=linux/amd64
|
|
|
|
|
2020-08-09 23:49:13 +02:00
|
|
|
ARG ALPINE_VERSION=3.12
|
2021-07-08 09:17:51 +02:00
|
|
|
ARG RUST_VERSION=1-slim-bullseye
|
2020-08-09 23:49:13 +02:00
|
|
|
|
2021-07-16 15:11:51 +02:00
|
|
|
FROM --platform=${BUILDPLATFORM} rust:${RUST_VERSION} AS base
|
2020-08-09 23:49:13 +02:00
|
|
|
WORKDIR /usr/src/prometheus_wireguard_exporter
|
|
|
|
|
|
|
|
# Setup
|
2021-07-08 09:17:51 +02:00
|
|
|
RUN apt-get update -y && \
|
|
|
|
apt-get install -y \
|
|
|
|
# to cross build with musl
|
|
|
|
musl-tools \
|
|
|
|
# to download the musl cross build tool
|
|
|
|
wget \
|
|
|
|
# for verifying the binary properties
|
|
|
|
file
|
2020-08-09 23:49:13 +02:00
|
|
|
|
2021-07-08 09:17:51 +02:00
|
|
|
# Download dependencies
|
2020-08-09 23:49:13 +02:00
|
|
|
RUN mkdir src && \
|
2021-07-08 09:17:51 +02:00
|
|
|
echo 'fn main() {}' > src/main.rs
|
|
|
|
COPY Cargo.toml Cargo.lock ./
|
|
|
|
RUN cargo fetch && \
|
|
|
|
rm src/main.rs
|
|
|
|
|
|
|
|
ARG STATIC=yes
|
|
|
|
RUN touch /tmp/rustflags && \
|
|
|
|
if [ "${STATIC}" != "yes" ]; then \
|
|
|
|
echo "-C target-feature=-crt-static" | tee /tmp/rustflags; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN echo "Setting variables for ${TARGETPLATFORM:=linux/amd64}" && \
|
|
|
|
case "${TARGETPLATFORM}" in \
|
|
|
|
linux/amd64) \
|
|
|
|
MUSL="x86_64-linux-musl"; \
|
|
|
|
RUSTTARGET="x86_64-unknown-linux-musl"; \
|
|
|
|
break;; \
|
|
|
|
linux/arm64) \
|
|
|
|
MUSL="aarch64-linux-musl"; \
|
|
|
|
RUSTTARGET="aarch64-unknown-linux-musl"; \
|
|
|
|
break;; \
|
|
|
|
linux/arm/v7) \
|
|
|
|
MUSL="armv7m-linux-musleabi"; \
|
|
|
|
RUSTTARGET="armv7-unknown-linux-musleabi"; \
|
|
|
|
break;; \
|
|
|
|
linux/arm/v6) \
|
|
|
|
MUSL="armv6-linux-musleabi"; \
|
|
|
|
RUSTTARGET="arm-unknown-linux-musleabi"; \
|
|
|
|
break;; \
|
|
|
|
linux/386) \
|
|
|
|
MUSL="i686-linux-musl"; \
|
|
|
|
RUSTTARGET="i686-unknown-linux-musl"; \
|
|
|
|
break;; \
|
|
|
|
linux/ppc64le) \
|
|
|
|
MUSL="powerpc64le-linux-musl"; \
|
|
|
|
RUSTTARGET="powerpc64le-unknown-linux-musl"; \
|
|
|
|
break;; \
|
|
|
|
linux/s390x) \
|
|
|
|
MUSL="s390x-linux-musl"; \
|
|
|
|
RUSTTARGET="s390x-unknown-linux-musl"; \
|
|
|
|
break;; \
|
|
|
|
linux/riscv64) \
|
|
|
|
MUSL="riscv64-linux-musl"; \
|
|
|
|
RUSTTARGET="riscv64gc-unknown-linux-musl"; \
|
|
|
|
break;; \
|
|
|
|
*) echo "unsupported platform ${TARGETPLATFORM}"; exit 1;; \
|
|
|
|
esac && \
|
|
|
|
echo "${MUSL}" | tee /tmp/musl && \
|
|
|
|
echo "${RUSTTARGET}" | tee /tmp/rusttarget
|
|
|
|
|
|
|
|
RUN MUSL="$(cat /tmp/musl)" && \
|
|
|
|
wget -qO- "https://musl.cc/$MUSL-cross.tgz" | tar -xzC /tmp && \
|
|
|
|
rm "/tmp/$MUSL-cross/usr" && \
|
|
|
|
cp -fr /tmp/"$MUSL"-cross/* / && \
|
|
|
|
rm -rf "/tmp/$MUSL-cross"
|
|
|
|
|
|
|
|
RUN rustup target add "$(cat /tmp/rusttarget)"
|
|
|
|
|
|
|
|
# Copy .cargo/config for cross build configuration
|
|
|
|
COPY .cargo ./.cargo
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
RUN echo 'fn main() {}' > src/main.rs && \
|
|
|
|
RUSTFLAGS="$(cat /tmp/rustflags)" \
|
|
|
|
CC="$(cat /tmp/musl)-gcc" \
|
|
|
|
cargo build --target "$(cat /tmp/rusttarget)" --release
|
|
|
|
RUN rm -r \
|
|
|
|
target/*-linux-*/release/deps/prometheus_wireguard_exporter* \
|
|
|
|
target/*-linux-*/release/prometheus_wireguard_exporter* \
|
|
|
|
src/main.rs
|
2020-08-09 23:49:13 +02:00
|
|
|
|
|
|
|
COPY . .
|
2021-07-16 15:11:51 +02:00
|
|
|
|
|
|
|
FROM base AS lint
|
|
|
|
ENTRYPOINT \
|
|
|
|
RUSTFLAGS="$(cat /tmp/rustflags)" \
|
|
|
|
CC="$(cat /tmp/musl)-gcc" \
|
|
|
|
cargo clippy --target "$(cat /tmp/rusttarget)"
|
|
|
|
|
|
|
|
FROM base AS test
|
|
|
|
ENTRYPOINT \
|
|
|
|
RUSTFLAGS="$(cat /tmp/rustflags)" \
|
|
|
|
CC="$(cat /tmp/musl)-gcc" \
|
|
|
|
cargo test --target "$(cat /tmp/rusttarget)"
|
|
|
|
|
|
|
|
FROM base AS build
|
|
|
|
# Build static binary with musl built-in
|
2021-07-08 09:17:51 +02:00
|
|
|
RUN RUSTFLAGS="$(cat /tmp/rustflags)" \
|
|
|
|
CC="$(cat /tmp/musl)-gcc" \
|
|
|
|
cargo build --target "$(cat /tmp/rusttarget)" --release && \
|
|
|
|
mv target/*-linux-*/release/prometheus_wireguard_exporter /tmp/binary
|
|
|
|
RUN description="$(file /tmp/binary)" && \
|
|
|
|
echo "$description" && \
|
|
|
|
if [ "${STATIC}" = "yes" ] && [ ! -z "$(echo $description | grep musl)" ]; then \
|
|
|
|
echo "binary is not statically built!" && exit 1; \
|
|
|
|
fi
|
2020-08-09 23:49:13 +02:00
|
|
|
|
|
|
|
FROM alpine:${ALPINE_VERSION}
|
|
|
|
EXPOSE 9586/tcp
|
2021-07-08 09:17:51 +02:00
|
|
|
WORKDIR /usr/local/bin
|
2020-10-13 14:07:40 +02:00
|
|
|
RUN adduser prometheus-wireguard-exporter -s /bin/sh -D -u 1000 1000 && \
|
|
|
|
mkdir -p /etc/sudoers.d && \
|
2021-01-02 21:59:08 +01:00
|
|
|
echo 'prometheus-wireguard-exporter ALL=(root) NOPASSWD:/usr/bin/wg show * dump' > /etc/sudoers.d/prometheus-wireguard-exporter && \
|
2020-10-13 14:07:40 +02:00
|
|
|
chmod 0440 /etc/sudoers.d/prometheus-wireguard-exporter
|
|
|
|
RUN apk add --update -q --no-cache wireguard-tools-wg sudo
|
|
|
|
USER prometheus-wireguard-exporter
|
2021-07-08 09:17:51 +02:00
|
|
|
ENTRYPOINT [ "/usr/local/bin/prometheus_wireguard_exporter" ]
|
2020-10-13 14:07:40 +02:00
|
|
|
CMD [ "-a" ]
|
2021-07-08 09:17:51 +02:00
|
|
|
COPY --from=build --chown=prometheus-wireguard-exporter /tmp/binary ./prometheus_wireguard_exporter
|