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

Fix fpm installation #1651

Merged
merged 1 commit into from
Feb 13, 2024
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
6 changes: 2 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,5 @@ RUN pip3 install -U \
Cython==0.29.36


# install rake
RUN gem install --no-document rake
## install fpm; needs to be pinned to 1.13.1 because some packages cannot be built with the newest release 1.14.0
RUN gem install --no-document fpm -v 1.14.2
# install fpm
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2
2 changes: 1 addition & 1 deletion .github/workflows/build/Dockerfile.ubuntu-2004
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ RUN apt-get update -y && apt-get install -y \
# Python
python3-pip \
rubygems && \
gem install --no-document fpm -v 1.14.2 && \
gem install --no-document dotenv:2.8.1 fpm:1.14.2 && \
pip3 install Cython==0.29.36
8 changes: 3 additions & 5 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9692C00E657DDE
RUN sudo add-apt-repository 'deb https://hyperledger.jfrog.io/artifactory/indy focal dev' && \
sudo add-apt-repository 'deb http://security.ubuntu.com/ubuntu bionic-security main' && \
sudo add-apt-repository 'deb https://repo.sovrin.org/deb bionic master' && \
sudo add-apt-repository 'deb https://repo.sovrin.org/sdk/deb bionic master'
sudo add-apt-repository 'deb https://repo.sovrin.org/sdk/deb bionic master'

RUN sudo apt-get update -y && sudo apt-get install -y \
# Python
Expand Down Expand Up @@ -68,7 +68,5 @@ RUN pip3 install -U \
'pyzmq==22.3.0'\
flake8==3.8.4

# install rake
RUN sudo gem install --no-document rake
## install fpm; needs to be pinned to 1.13.1 because some packages cannot be built with the newest release 1.14.0
RUN sudo gem install --no-document fpm -v 1.14.2
# install fpm
RUN sudo gem install --no-document rake dotenv:2.8.1 fpm:1.14.2
Loading