Skip to content
Open
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM fedora:33
RUN dnf install -y git podman buildah python3-libselinux python3-pip
RUN pip3 install ansible==2.10.5 jmespath
RUN pip3 install --no-cache-dir ansible==2.10.5 jmespath
RUN mkdir -p /playbooks
COPY roles/ /playbooks/roles/
COPY filter_plugins/ /playbooks/filter_plugins/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ RUN export ARCH=$(case $(arch) in x86_64) echo -n amd64 ;; aarch64) echo -n arm6
mkdir /project/output && \
dnf install --setopt=install_weak_deps=False -y git-core ansible python3-pip mlocate jq skopeo && \
dnf clean all && \
pip3 install operator-courier
pip3 install --no-cache-dir operator-courier
ADD ./run_tests.py /run_tests.py
CMD ["/run_tests.py"]
4 changes: 2 additions & 2 deletions upstream/roles/install_iib/templates/Dockerfile-workers.j2
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ RUN sed -i -e 's|^#mount_program|mount_program|g' /etc/containers/storage.conf
COPY docker/libpod.conf /usr/share/containers/libpod.conf

COPY . .
RUN pip3 install -r requirements.txt --no-deps --require-hashes
RUN pip3 install . --no-deps
RUN pip3 install --no-cache-dir -r requirements.txt --no-deps --require-hashes && \
pip3 install --no-cache-dir . --no-deps
CMD ["/bin/celery-3", "-A", "iib.workers.tasks", "worker", "--loglevel=info"]