Skip to content

Instantly share code, notes, and snippets.

@Mossman1215
Created March 14, 2023 21:55
Show Gist options
  • Save Mossman1215/aab57516d5cdac073efc8e9285c44ad8 to your computer and use it in GitHub Desktop.
Save Mossman1215/aab57516d5cdac073efc8e9285c44ad8 to your computer and use it in GitHub Desktop.
ubi8 rhel8 puppetserver dockerfile
FROM registry.access.redhat.com/ubi8/ubi
RUN dnf -y update
RUN dnf install -y https://yum.puppet.com/puppet7-release-el-8.noarch.rpm
RUN dnf install -y puppetserver
VOLUME [ "/etc/puppetlabs/" ]
CMD [ "/opt/puppetlabs/bin/puppetserver", "foreground" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment