Rename Containerfile to Dockerfile

This commit is contained in:
Jeff Mahoney 2024-05-09 13:15:58 -04:00
parent bd66031e98
commit 5be43e6143
2 changed files with 9 additions and 10 deletions

View File

@ -1,9 +0,0 @@
FROM bci-base:15.5
RUN zypper --non-interactive install -y radvd
ENV RADVD_OPTIONS="-C /etc/radvd.conf --logmethod stderr"
COPY ./container /container
CMD /container/scripts/entrypoint.sh
LABEL INSTALL="/usr/bin/podman run --env IMAGE=IMAGE --rm --privileged --pid host -v /:/host -v /run:/run:rslave -v /sys/fs:/sys/fs:ro IMAGE /container/scripts/label-install"
LABEL UNINSTALL="/usr/bin/podman run --rm --privileged --pid host -v /run:/run:rslave -v /:/host:shared IMAGE /container/scripts/label-uninstall"
LABEL RUN="/usr/bin/podman run --replace --name NAME IMAGE --env RADVD_OPTIONS=RADVD_OPTIONS -v /etc/radvd.conf:/etc/radvd.conf:ro /container/scripts/entrypoint.sh"

View File

@ -1 +0,0 @@
Containerfile

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM bci-base:15.5
RUN zypper --non-interactive install -y radvd
ENV RADVD_OPTIONS="-C /etc/radvd.conf --logmethod stderr"
COPY ./container /container
CMD /container/scripts/entrypoint.sh
LABEL INSTALL="/usr/bin/podman run --env IMAGE=IMAGE --rm --privileged --pid host -v /:/host -v /run:/run:rslave -v /sys/fs:/sys/fs:ro IMAGE /container/scripts/label-install"
LABEL UNINSTALL="/usr/bin/podman run --rm --privileged --pid host -v /run:/run:rslave -v /:/host:shared IMAGE /container/scripts/label-uninstall"
LABEL RUN="/usr/bin/podman run --replace --name NAME IMAGE --env RADVD_OPTIONS=RADVD_OPTIONS -v /etc/radvd.conf:/etc/radvd.conf:ro /container/scripts/entrypoint.sh"