Skip to content

Install storage libraries #652

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 18, 2024
Merged
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
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
Loading