Skip to content

Commit 1fcd714

Browse files
committed
Fix flux Dockerfile pip line
See: #29
1 parent dfc5bef commit 1fcd714

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docker/flux/Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ ARG BRANCH_NAME
55
# Install Base OS Dependencies
66
RUN dnf update -y && \
77
dnf install -y epel-release && dnf clean all && \
8-
dnf install -y \
9-
python3.12 \
10-
libjson-glib-dev \
11-
git && \
8+
dnf install -y python3.12 libjson-glib-dev git && \
129
dnf clean all
1310

1411
RUN alternatives --install /usr/bin/python3 python /usr/bin/python3.12 1
@@ -19,7 +16,7 @@ RUN python3 --version
1916
RUN python3 -m venv canary && \
2017
. canary/bin/activate && \
2118
python3 -m pip install --upgrade pip==25.1.1 && \
22-
python3 -m pip install -e git+https://[email protected]/alexknigge/canary@$BRANCH_NAME#egg=canary-wm[dev]
19+
python3 -m pip install -e git+https://[email protected]/alexknigge/canary@$BRANCH_NAME#egg=canary-wm[dev] && \
2320
python3 -m pip install flux-python
2421

2522

0 commit comments

Comments
 (0)