Skip to content

Commit 2acd776

Browse files
committed
Pin Cython to fix RocksDB install
Signed-off-by: Wade Barnes <[email protected]>
1 parent fcdac9c commit 2acd776

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Diff for: .github/workflows/build/Dockerfile.ubuntu-2204

+7-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ RUN echo "deb https://hyperledger.jfrog.io/artifactory/indy jammy dev rc" >> /e
3636
echo "deb https://repo.sovrin.org/deb bionic master" >> /etc/apt/sources.list && \
3737
echo "deb https://repo.sovrin.org/sdk/deb bionic master" >> /etc/apt/sources.list
3838

39-
RUN apt-get update -y && apt-get install -y rubygems python3-pip && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
39+
RUN apt-get update -y && apt-get install -y \
40+
rubygems \
41+
python3-pip && \
42+
apt-get -y autoremove && \
43+
rm -rf /var/lib/apt/lists/*
4044

4145
# install fpm
42-
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.15.0
46+
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.15.0 && \
47+
pip3 install Cython==0.29.36

0 commit comments

Comments
 (0)