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

Ticket 1533/fix docker image init #1534

Merged
merged 5 commits into from
Jul 20, 2023
Merged
Changes from 1 commit
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: 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" | sudo tee /etc/apt/sources.list.d/focal-security.list
sergiy-skalelabs marked this conversation as resolved.
Show resolved Hide resolved
RUN sudo apt-get update
RUN sudo apt-get install 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