Skip to content

Commit 28f42c8

Browse files
committed
Fix fpm installation
Signed-off-by: Wade Barnes <[email protected]>
1 parent 4a0adf6 commit 28f42c8

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ RUN pip3 install -U \
6868

6969

7070
# install fpm
71-
RUN gem install --no-document rake
72-
RUN gem install --no-document fpm -v 1.14.2
71+
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2
7372

7473
RUN apt-get -y autoremove \
7574
&& rm -rf /var/lib/apt/lists/*

.github/workflows/build/Dockerfile.ubuntu-2004

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,4 @@ RUN echo "deb https://hyperledger.jfrog.io/artifactory/indy focal dev rc stable
3434
RUN apt-get update -y && apt-get install -y rubygems python3-pip && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
3535

3636
# install fpm
37-
RUN gem install --no-document rake
38-
RUN gem install --no-document fpm -v 1.14.2
37+
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2

.github/workflows/publishRelease.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,23 @@ jobs:
5050
uses: actions/checkout@v4
5151

5252
- name: Download Node deb Artifacts from Github Action Artifacts
53-
uses: dawidd6/action-download-artifact@v2
53+
uses: dawidd6/action-download-artifact@v3
5454
with:
5555
github_token: ${{ secrets.GITHUB_TOKEN }}
5656
workflow: releasepr.yaml
5757
workflow_conclusion: success
5858
name: indy_node-deb
5959
path: artifacts/indy_node-deb
6060
- name: Download Node python Artifacts from Github Action Artifacts
61-
uses: dawidd6/action-download-artifact@v2
61+
uses: dawidd6/action-download-artifact@v3
6262
with:
6363
github_token: ${{ secrets.GITHUB_TOKEN }}
6464
workflow: releasepr.yaml
6565
workflow_conclusion: success
6666
name: indy_node-python
6767
path: artifacts/indy_node-python
6868
- name: Download Node third party dependency Artifacts from Github Action Artifacts
69-
uses: dawidd6/action-download-artifact@v2
69+
uses: dawidd6/action-download-artifact@v3
7070
with:
7171
github_token: ${{ secrets.GITHUB_TOKEN }}
7272
workflow: releasepr.yaml

.gitpod.Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9692C00E657DDE
2929
RUN sudo add-apt-repository 'deb https://hyperledger.jfrog.io/artifactory/indy focal dev' && \
3030
sudo add-apt-repository 'deb http://security.ubuntu.com/ubuntu bionic-security main' && \
3131
sudo add-apt-repository 'deb https://repo.sovrin.org/deb bionic master' && \
32-
sudo add-apt-repository 'deb https://repo.sovrin.org/sdk/deb bionic master'
32+
sudo add-apt-repository 'deb https://repo.sovrin.org/sdk/deb bionic master'
3333

3434

3535

@@ -68,5 +68,4 @@ RUN pip3 install -U \
6868

6969

7070
# install fpm
71-
RUN sudo gem install --no-document rake
72-
RUN sudo gem install --no-document fpm -v 1.14.2
71+
RUN sudo gem install --no-document rake dotenv:2.8.1 fpm:1.14.2

build-scripts/ubuntu-2004/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN echo "deb https://hyperledger.jfrog.io/artifactory/indy focal dev" >> /etc
3030
echo "deb https://repo.sovrin.org/sdk/deb bionic master" >> /etc/apt/sources.list
3131

3232
# Sovrin
33-
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
33+
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
3434

3535
RUN apt-get update -y && apt-get install -y \
3636
# Python
@@ -66,8 +66,7 @@ RUN pip3 install -U \
6666
'pyzmq==22.3.0'
6767

6868
# install fpm
69-
RUN gem install --no-document rake
70-
RUN gem install --no-document fpm -v 1.14.2
69+
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2
7170

7271
RUN apt-get -y autoremove \
7372
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)