Created
September 1, 2022 15:37
-
-
Save rjhowe/7231cd3f5c59f78ea9557173cb1be70c to your computer and use it in GitHub Desktop.
Just a basic Containerfile template.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM quay.io/fedora/fedora | |
RUN dnf -y update && dnf clean all && \ | |
INSTALL_PKGS="\ | |
ncat \ | |
openssl \ | |
&& \ | |
dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ | |
rpm -V $INSTALL_PKGS && \ | |
ENTRYPOINT ["/bin/bash"] | |
CMD [/bin/echo, "hello"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment