Skip to content

Commit

Permalink
Merge pull request #652 from mdellweg/install_storages
Browse files Browse the repository at this point in the history
Install storage libraries
  • Loading branch information
ggainey authored Jul 18, 2024
2 parents 26eefd4 + 8174667 commit 8943b86
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion images/galaxy-minimal/nightly/Containerfile.core
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ARG FROM_TAG="latest"
FROM pulp/base:${FROM_TAG}

RUN pip3 install git+https://github.com/ansible/galaxy_ng \
RUN pip3 install \
git+https://github.com/ansible/galaxy_ng \
pulpcore[s3] \
-c /constraints.txt && \
rm -rf /root/.cache/pip

Expand Down
2 changes: 1 addition & 1 deletion images/galaxy-minimal/stable/Containerfile.core
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG GALAXY_NG_VERSION=""

RUN pip3 install --upgrade \
galaxy-ng${GALAXY_NG_VERSION} \
pulpcore${PULPCORE_VERSION} \
pulpcore[s3]${PULPCORE_VERSION} \
-c /constraints.txt && \
rm -rf /root/.cache/pip

Expand Down
1 change: 1 addition & 0 deletions images/galaxy/nightly/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ARG GALAXY_NG_VERSION=""

RUN pip3 install --upgrade \
git+https://github.com/ansible/galaxy_ng.git@master \
pulpcore[s3] \
requests \
-c /constraints.txt && \
rm -rf /root/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion images/galaxy/stable/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG GALAXY_NG_VERSION=""

RUN pip3 install --upgrade \
galaxy-ng${GALAXY_NG_VERSION} \
pulpcore${PULPCORE_VERSION} \
pulpcore[s3]${PULPCORE_VERSION} \
requests \
-c /constraints.txt && \
rm -rf /root/.cache/pip
Expand Down
3 changes: 2 additions & 1 deletion images/pulp-minimal/nightly/Containerfile.core
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ARG FROM_TAG="latest"
FROM pulp/base:${FROM_TAG}

RUN pip3 install git+https://github.com/pulp/pulpcore.git#egg=pulpcore \
RUN pip3 install \
pulpcore[s3,google,azure]@git+https://github.com/pulp/pulpcore.git#egg=pulpcore \
git+https://github.com/pulp/pulp_ansible.git \
git+https://github.com/pulp/pulp-certguard.git \
git+https://github.com/pulp/pulp_container.git \
Expand Down
2 changes: 1 addition & 1 deletion images/pulp-minimal/stable/Containerfile.core
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARG PULP_RPM_VERSION=""
ARG PULP_OSTREE_VERSION=""

RUN pip3 install --upgrade \
pulpcore${PULPCORE_VERSION} \
pulpcore[s3,google,azure]${PULPCORE_VERSION} \
pulp-ansible${PULP_ANSIBLE_VERSION} \
pulp-certguard${PULP_CERTGUARD_VERSION} \
pulp-container${PULP_CONTAINER_VERSION} \
Expand Down
2 changes: 1 addition & 1 deletion images/pulp/nightly/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG FROM_TAG="latest"
FROM pulp/pulp-ci-centos9:${FROM_TAG}

RUN pip3 install --upgrade \
git+https://github.com/pulp/pulpcore@main \
pulpcore[s3,google,azure]@git+https://github.com/pulp/pulpcore@main \
git+https://github.com/pulp/pulp_ansible@main \
git+https://github.com/pulp/pulp-certguard@main \
git+https://github.com/pulp/pulp_container@main \
Expand Down
2 changes: 1 addition & 1 deletion images/pulp/stable/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ARG PULP_RPM_VERSION=""
ARG PULP_OSTREE_VERSION=""

RUN pip3 install --upgrade \
pulpcore${PULPCORE_VERSION} \
pulpcore[s3,google,azure]${PULPCORE_VERSION} \
pulp-ansible${PULP_ANSIBLE_VERSION} \
pulp-certguard${PULP_CERTGUARD_VERSION} \
pulp-container${PULP_CONTAINER_VERSION} \
Expand Down

0 comments on commit 8943b86

Please sign in to comment.