mirror of
https://github.com/minoplhy/docker-ripe-atlas.git
synced 2025-04-21 20:36:58 +00:00
46 lines
1.3 KiB
Docker
46 lines
1.3 KiB
Docker
|
FROM debian:10-slim as builder
|
||
|
LABEL image="ripe-atlas-builder"
|
||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||
|
ARG GIT_URL=https://github.com/RIPE-NCC/ripe-atlas-software-probe.git
|
||
|
|
||
|
RUN apt-get update -y \
|
||
|
&& apt-get install -y git tar fakeroot libssl-dev libcap2-bin autoconf automake libtool build-essential python
|
||
|
|
||
|
WORKDIR /root
|
||
|
|
||
|
RUN git clone --recursive "$GIT_URL"
|
||
|
|
||
|
RUN ./ripe-atlas-software-probe/build-config/debian/bin/make-deb
|
||
|
|
||
|
FROM debian:10-slim
|
||
|
LABEL maintainer="dockerhub@public.swineson.me"
|
||
|
|
||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||
|
|
||
|
COPY --from=builder /root/atlasswprobe-*.deb /tmp
|
||
|
|
||
|
RUN ln -s /bin/true /bin/systemctl
|
||
|
RUN apt-get update -y \
|
||
|
&& apt-get install -y libcap2-bin iproute2 openssh-client procps net-tools gosu \
|
||
|
&& dpkg -i /tmp/atlasswprobe-*.deb \
|
||
|
&& apt-get install -fy \
|
||
|
&& rm -rf /var/lib/apt/lists/* \
|
||
|
&& rm- rf /tmp/atlasswprobe-*.deb
|
||
|
|
||
|
RUN ln -s /usr/local/atlas/bin/ATLAS /usr/local/bin/atlas
|
||
|
COPY entrypoint.sh /usr/local/bin
|
||
|
|
||
|
RUN chmod +x /usr/local/bin/* \
|
||
|
&& groupadd -fr atlas \
|
||
|
&& usermod -aG atlas atlas \
|
||
|
&& 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 [ "entrypoint.sh" ]
|
||
|
CMD [ "atlas" ]
|