File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1- FROM quay.io/quads/python39 :latest
1+ FROM quay.io/fedora/python-310 :latest
22
3- RUN apk add git && apk update
3+ USER root
4+
5+ RUN dnf install -y git
46
57RUN git clone https://github.com/redhat-performance/badfish
68
79WORKDIR badfish
810
9- RUN apk add build-base
11+ RUN dnf install -y gcc python3-devel
1012RUN pip install --upgrade pip
1113RUN pip install --no-cache-dir -r requirements.txt
1214RUN python -m build
13- RUN python -m pip install dist/badfish-1.0.3 .tar.gz
15+ RUN python -m pip install dist/badfish-1.0.7 .tar.gz
1416
1517ENTRYPOINT ["badfish" ]
1618CMD ["-v" ]
Original file line number Diff line number Diff line change 1- FROM quay.io/quads/python39 :latest
1+ FROM quay.io/fedora/python-310 :latest
22
3- RUN apk add git && apk update
3+ USER root
4+
5+ RUN dnf install -y git
46
57RUN git clone https://github.com/redhat-performance/badfish
68
79WORKDIR badfish
810
911RUN git checkout development
1012
11- RUN apk add build-base
13+ RUN dnf install -y gcc python3-devel
1214RUN pip install --upgrade pip
1315RUN pip install -r requirements.txt
1416RUN python -m build
15- RUN python -m pip install dist/badfish-1.0.3 .tar.gz
17+ RUN python -m pip install dist/badfish-1.0.7 .tar.gz
1618
1719ENTRYPOINT ["badfish"]
1820CMD ["-v"]
You can’t perform that action at this time.
0 commit comments