container-radvd/Dockerfile

18 lines
785 B
Docker

#!BuildTag: radvd:%PKG_VERSION% radvd:%PKG_VERSION%.%RELEASE% radvd
FROM suse/sle15:15.6
# labelprefix=org.opensuse.linux-security-sensor
LABEL org.opencontainers.image.title="Linux IPv6 Router Advertisement Daemon"
LABEL org.opencontainers.image.description="Linux IPv6 Router Advertisement Daemon %PKG_VERSION%"
LABEL org.opensuse.version="%PKG_VERSION%.%RELEASE%"
LABEL org.openbuildservice.disturl="%DISTURL%"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opensuse.reference="registry.opensuse.org/home/jeff_mahoney/containers/radvd:%PKG_VERSION%.%RELEASE%"
# endlabelprefix
RUN zypper --non-interactive install -y radvd
VOLUME /etc/radvd
ENV RADVD_OPTIONS="-C /etc/radvd.conf --logmethod stderr"
COPY ./container /container
CMD /usr/sbin/radvd ${RADVD_OPTIONS}