Skip to content

Commit

Permalink
Fix fpm installation
Browse files Browse the repository at this point in the history
Signed-off-by: Wade Barnes <[email protected]>
  • Loading branch information
WadeBarnes committed Feb 12, 2024
1 parent b7f0c06 commit e3a773f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
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

0 comments on commit e3a773f

Please sign in to comment.