This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
gluon-supernode-docker/radvd/Dockerfile

21 lines
451 B
Docker
Raw Normal View History

2021-12-07 01:05:27 +00:00
FROM docker.io/library/debian:bullseye
ENV RADVD_INTERFACE=
ENV RADVD_ADV_MANAGEMENT_FLAG=off
ENV RADVD_MTU=1500
ENV RADVD_ADV_MANAGEMENT_FLAG=
ENV RADVD_SOURCE_LL_ADDRESS=
ENV RADVD_PREFIX=
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y radvd && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives
COPY entry-point.sh /entry-point.sh
RUN chmod +x /entry-point.sh
ENTRYPOINT ["/bin/sh", "/entry-point.sh"]