docker-ripe-atlas/Dockerfile
2025-03-10 22:35:35 +07:00

63 lines
1.9 KiB
Docker

## builder
FROM debian:12 as builder
LABEL image="ripe-atlas-builder"
ARG DEBIAN_FRONTEND=noninteractive
ARG GIT_URL=https://github.com/RIPE-NCC/ripe-atlas-software-probe.git
WORKDIR /root
RUN apt-get update -y && \
apt-get install -y git build-essential debhelper libssl-dev autotools-dev psmisc net-tools
RUN git clone --recursive "$GIT_URL"
WORKDIR /root/ripe-atlas-software-probe
# version 5100
RUN git checkout 5100
RUN autoreconf -iv
RUN ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib64 --runstatedir=/run --with-user=ripe-atlas --with-group=ripe-atlas --with-measurement-user=ripe-atlas-measurement --disable-systemd --enable-chown --enable-setcap-install
RUN make
WORKDIR /root
## artifacts
FROM scratch AS artifacts
LABEL image="ripe-atlas-artifacts"
COPY --from=builder /root/ripe-atlas-software-probe /
## the actual image
FROM debian:12
LABEL maintainer="dockerhub@public.swineson.me"
LABEL image="ripe-atlas"
ARG DEBIAN_FRONTEND=noninteractive
COPY --from=builder /root/ripe-atlas-software-probe /tmp
ARG ATLAS_UID=101
ARG ATLAS_MEAS_UID=102
ARG ATLAS_GID=999
RUN ln -s /bin/true /bin/systemctl \
&& adduser --system --uid $ATLAS_UID ripe-atlas \
&& adduser --system --uid $ATLAS_MEAS_UID ripe-atlas-measurement \
&& groupadd --force --system --gid $ATLAS_GID ripe-atlas \
&& apt-get update -y \
&& apt-get install -y libcap2-bin iproute2 openssh-client procps net-tools tini debhelper libssl-dev autotools-dev psmisc opensysusers
WORKDIR /tmp/ripe-atlas-software-probe
RUN make install
# Inprogress
COPY entrypoint.sh /usr/local/bin
RUN chmod +x /usr/local/bin/* \
&& chown -R atlas:atlas /var/atlas-probe \
&& mkdir -p /var/atlasdata \
&& chown -R atlas:atlas /var/atlasdata \
&& chmod 777 /var/atlasdata
WORKDIR /var/atlas-probe
VOLUME [ "/var/atlas-probe/etc", "/var/atlas-probe/status" ]
ENTRYPOINT [ "tini", "--", "entrypoint.sh" ]
CMD [ "atlas" ]