Skip to content

Commit

Permalink
Merge pull request #529 from gerrod3/fix-3.23
Browse files Browse the repository at this point in the history
Fix 3.23 version pin
  • Loading branch information
gerrod3 authored Aug 1, 2023
2 parents 69f3505 + 01320f7 commit 22677e4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions images/galaxy-minimal/stable/Containerfile.core
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ARG PULPCORE_VERSION=""
ARG GALAXY_NG_VERSION=""

RUN pip3 install --upgrade \
pulpcore${PULPCORE_VERSION} \
galaxy-ng${GALAXY_NG_VERSION} && \
galaxy-ng${GALAXY_NG_VERSION} \
pulpcore${PULPCORE_VERSION} && \
rm -rf /root/.cache/pip

USER pulp:pulp
Expand Down
4 changes: 2 additions & 2 deletions images/galaxy/nightly/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ FROM pulp/pulp-ci-centos:${FROM_TAG}
ARG GALAXY_NG_VERSION=""

RUN pip3 install --upgrade \
requests \
git+https://github.com/ansible/galaxy_ng.git@master && \
git+https://github.com/ansible/galaxy_ng.git@master \
requests && \
rm -rf /root/.cache/pip

USER pulp:pulp
Expand Down
4 changes: 2 additions & 2 deletions images/galaxy/stable/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ ARG PULPCORE_VERSION=""
ARG GALAXY_NG_VERSION=""

RUN pip3 install --upgrade \
requests \
galaxy-ng${GALAXY_NG_VERSION} \
pulpcore${PULPCORE_VERSION} \
galaxy-ng${GALAXY_NG_VERSION} && \
requests && \
rm -rf /root/.cache/pip

USER pulp:pulp
Expand Down
2 changes: 1 addition & 1 deletion images/pulp-minimal/stable/Containerfile.core
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG FROM_TAG="latest"
FROM pulp/base:${FROM_TAG}

ARG PULPCORE_VERSION="~=3.23"
ARG PULPCORE_VERSION="~=3.23.0"
ARG PULP_ANSIBLE_VERSION=""
ARG PULP_CERTGUARD_VERSION=""
ARG PULP_CONTAINER_VERSION=""
Expand Down
2 changes: 1 addition & 1 deletion images/pulp/stable/Containerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG FROM_TAG="latest"
FROM pulp/pulp-ci-centos:${FROM_TAG}

ARG PULPCORE_VERSION="~=3.23"
ARG PULPCORE_VERSION="~=3.23.0"
ARG PULP_ANSIBLE_VERSION=""
ARG PULP_CERTGUARD_VERSION=""
ARG PULP_CONTAINER_VERSION=""
Expand Down

0 comments on commit 22677e4

Please sign in to comment.