Skip to content

Commit

Permalink
Merge pull request #1534 from skalenetwork/ticket-1533/fix-docker-ima…
Browse files Browse the repository at this point in the history
…ge-init

Ticket 1533/fix docker image init
  • Loading branch information
sergiy-skalelabs committed Jul 20, 2023
2 parents 318fded + c174c73 commit a76b84f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ RUN apt-get install --no-install-recommends -yq software-properties-common
RUN apt-get update
RUN apt-get install --no-install-recommends -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget curl sudo git

# NOTICE: we need to install SSL 1.1 manually here in order to make BLS command line tools working
RUN echo "deb http://security.ubuntu.com/ubuntu focal-security main" | tee /etc/apt/sources.list.d/focal-security.list
RUN apt-get update
RUN apt-get install --no-install-recommends -y libssl1.1
# NOTICE: to remove extra dep above: sudo rm /etc/apt/sources.list.d/focal-security.list

RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN apt-get install --no-install-recommends -y nodejs
RUN npm install npm --global
Expand Down

0 comments on commit a76b84f

Please sign in to comment.