Skip to content
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

Update Dockerfile #83

Merged
merged 2 commits into from
Jan 10, 2025
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
3 changes: 3 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[TYPECHECK]
ignored-modules=magic

8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM quay.io/centos/centos:stream8
FROM docker.io/redhat/ubi8:latest

# pipeline dependecies
RUN yum -y install git python3 python3-flask python3-requests python3-libxml2 python3-yaml python3-magic
RUN yum -y install git python3 python3-requests python3-libxml2 python3-yaml
# pipeline tests dependecies
RUN yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm; \
yum -y install make python3-pylint diffutils
Expand All @@ -11,9 +11,7 @@ RUN yum -y install yum-utils; \
yum-config-manager --enable beaker-client; \
yum -y install python3-bugzilla beaker-client python3-productmd

# docs dependencies
RUN yum-config-manager --enable powertools; \
yum -y install python3-sphinx
RUN pip3 install python-magic flask sphinx

# fetch other libraries and tools
WORKDIR /root
Expand Down
Loading