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 #1838

Merged
merged 1 commit into from
Feb 12, 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
3 changes: 1 addition & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ RUN pip3 install -U \


# install fpm
RUN gem install --no-document rake
RUN gem install --no-document fpm -v 1.14.2
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2

RUN apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*
3 changes: 1 addition & 2 deletions .github/workflows/build/Dockerfile.ubuntu-2004
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@ RUN echo "deb https://hyperledger.jfrog.io/artifactory/indy focal dev rc stable
RUN apt-get update -y && apt-get install -y rubygems python3-pip && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*

# install fpm
RUN gem install --no-document rake
RUN gem install --no-document fpm -v 1.14.2
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2
6 changes: 3 additions & 3 deletions .github/workflows/publishRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,23 @@ jobs:
uses: actions/checkout@v4

- name: Download Node deb Artifacts from Github Action Artifacts
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: releasepr.yaml
workflow_conclusion: success
name: indy_node-deb
path: artifacts/indy_node-deb
- name: Download Node python Artifacts from Github Action Artifacts
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: releasepr.yaml
workflow_conclusion: success
name: indy_node-python
path: artifacts/indy_node-python
- name: Download Node third party dependency Artifacts from Github Action Artifacts
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: releasepr.yaml
Expand Down
5 changes: 2 additions & 3 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'



Expand Down Expand Up @@ -68,5 +68,4 @@ RUN pip3 install -U \


# install fpm
RUN sudo gem install --no-document rake
RUN sudo gem install --no-document fpm -v 1.14.2
RUN sudo gem install --no-document rake dotenv:2.8.1 fpm:1.14.2
5 changes: 2 additions & 3 deletions build-scripts/ubuntu-2004/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN echo "deb https://hyperledger.jfrog.io/artifactory/indy focal dev" >> /etc
echo "deb https://repo.sovrin.org/sdk/deb bionic master" >> /etc/apt/sources.list

# Sovrin
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88

RUN apt-get update -y && apt-get install -y \
# Python
Expand Down Expand Up @@ -66,8 +66,7 @@ RUN pip3 install -U \
'pyzmq==22.3.0'

# install fpm
RUN gem install --no-document rake
RUN gem install --no-document fpm -v 1.14.2
RUN gem install --no-document rake dotenv:2.8.1 fpm:1.14.2

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