Skip to content

Commit

Permalink
Docker installation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amanr032@gmail.com authored and amanr032@gmail.com committed Dec 19, 2022
1 parent 9e7404e commit 14951f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions installer/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/bash

# Install dependencies
echo Installing dependencies
sudo apt-get install -y make curl wget libltdl7 libseccomp2 libffi-dev gawk apt-transport-https ca-certificates curl gnupg gnupg-agent lsb-release software-properties-common sshpass pv

echo Enabling docker repository
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg --yes
Expand All @@ -12,10 +16,6 @@ echo \
echo Updating local repositories
sudo apt-get update

# Install dependencies
echo Installing dependencies
sudo apt-get install -y make curl wget libltdl7 libseccomp2 libffi-dev gawk apt-transport-https ca-certificates curl gnupg gnupg-agent lsb-release software-properties-common sshpass pv

# Install python dependencies
echo Installing Python dependencies
sudo apt-get install -y python3-distutils
Expand Down

0 comments on commit 14951f5

Please sign in to comment.