Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions images/foreman-proxy/Containerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM quay.io/centos/centos:stream9
FROM quay.io/centos/centos:stream10

ARG FOREMAN_VERSION=nightly
ARG KATELLO_VERSION=nightly
ARG FOREMAN_PROXY_PLUGINS=""

RUN dnf upgrade -y && dnf install --nodocs -y https://yum.theforeman.org/releases/${FOREMAN_VERSION}/el9/x86_64/foreman-release.rpm https://yum.theforeman.org/katello/${KATELLO_VERSION}/katello/el9/x86_64/katello-repos-latest.rpm && dnf install --nodocs foreman-proxy -y && dnf clean all
RUN dnf upgrade -y && dnf copr enable ekohl/foreman-nightly-staging rhel-10-x86_64 -y && \
dnf install --nodocs foreman-proxy -y && dnf clean all

RUN set -eu; for PLUGIN in ${FOREMAN_PROXY_PLUGINS}; do \
echo $PLUGIN; \
Expand Down
8 changes: 4 additions & 4 deletions images/foreman/Containerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM quay.io/centos/centos:stream9
FROM quay.io/centos/centos:stream10

ARG FOREMAN_VERSION=nightly
ARG KATELLO_VERSION=nightly

RUN dnf upgrade -y && dnf install --nodocs -y https://yum.theforeman.org/releases/${FOREMAN_VERSION}/el9/x86_64/foreman-release.rpm https://yum.theforeman.org/katello/${KATELLO_VERSION}/katello/el9/x86_64/katello-repos-latest.rpm && \
RUN dnf upgrade -y && dnf copr enable ekohl/foreman-nightly-staging rhel-10-x86_64 -y && \
dnf install foreman foreman-postgresql foreman-service foreman-redis foreman-dynflow-sidekiq \
foreman-libvirt foreman-vmware foreman-openstack foreman-ec2 --nodocs -y && \
foreman-vmware foreman-openstack foreman-ec2 --nodocs -y && \
dnf clean all
WORKDIR /usr/share/foreman
ENV MALLOC_ARENA_MAX=2
Expand All @@ -16,7 +16,7 @@ ENV RAILS_LOG_TO_STDOUT=true
CMD /usr/share/foreman/bin/rails db:migrate && /usr/share/foreman/bin/rails db:seed && /usr/share/foreman/bin/rails server --environment production
EXPOSE 3000/tcp

ARG FOREMAN_PLUGINS="foreman-tasks foreman_remote_execution katello foreman_google foreman_azure_rm foreman_kubevirt"
ARG FOREMAN_PLUGINS=""

RUN set -eu; for PLUGIN in ${FOREMAN_PLUGINS}; do \
echo $PLUGIN; \
Expand Down