Files
radvd/Docker.autogen
2025-04-24 13:05:48 -07:00

15 lines
357 B
Plaintext

FROM ubuntu:22.04
# apt is meant to be used by humans, whereas apt-get is for scripting.
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -qy \
autoconf \
automake \
gettext \
libtool \
gawk \
pkg-config \
make \
systemd
VOLUME /workdir
ENTRYPOINT cd /workdir && /bin/sh autogen.sh && ./configure -C && make distclean