2 Révisions

Auteur SHA1 Message Date
af06ca0d34 Update .gitignore 2020-04-03 12:08:12 -04:00
4ac27676a6 RHEL-approved naming 2020-04-03 12:08:02 -04:00
3 fichiers modifiés avec 22 ajouts et 1 suppressions

1
.gitignore externe
Voir le fichier

@@ -1,2 +1,3 @@
**/
*.zip
testing.sh

21
Containerfile Fichier normal
Voir le fichier

@@ -0,0 +1,21 @@
FROM fedora:latest
LABEL maintainer="bryanroessler@gmail.com"
RUN dnf install dpkg rpm-build createrepo httpd -y
RUN curl -sO "https://git.bryanroessler.com/bryan/install_MC_fedora/raw/master/install_MC_fedora.sh" \
&& chmod +x ./install_MC_fedora.sh \
&& ./install_MC_fedora.sh -b
RUN dnf clean all
COPY root/ /
RUN systemctl enable httpd build-jriver-repo.timer
EXPOSE 80
CMD [ "/usr/sbin/init" ]
# podman build -t build-jriver-repo .
# podman run -d -p 8081:80 localhost/build-jriver-repo

Voir le fichier

@@ -1 +0,0 @@
FROM fedora:latest