mirror of
https://github.com/radvd-project/radvd.git
synced 2025-12-20 01:11:37 +08:00
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> Reference: https://github.com/actions/runner-images/issues/11101
15 lines
357 B
Plaintext
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
|