From e8b66accb3c3eece7b44dfc529e553145a8a786f Mon Sep 17 00:00:00 2001 From: q0w <43147888+q0w@users.noreply.github.com> Date: Tue, 11 Jan 2022 17:53:26 +0300 Subject: [PATCH 1/2] Issue 2 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8b69eb1..23dfd55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ RUN apk update && apk upgrade \ libffi-dev openssl-dev build-base git curl \ # Installing Rust (latest cryptography requires it): cargo gcc musl-dev \ + # Installing bash: + bash \ # Installing pip: && curl 'https://bootstrap.pypa.io/get-pip.py' -o get-pip.py \ && python3 get-pip.py \ From 1c0a764b74a445b6c25127ba4770b2f0b5e2506f Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Tue, 11 Jan 2022 20:20:27 +0300 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23dfd55..395d74c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,11 +9,9 @@ RUN apk update && apk upgrade \ # Installing Python: python3 python3-dev \ # Installing build deps: - libffi-dev openssl-dev build-base git curl \ + libffi-dev openssl-dev build-base git curl bash \ # Installing Rust (latest cryptography requires it): cargo gcc musl-dev \ - # Installing bash: - bash \ # Installing pip: && curl 'https://bootstrap.pypa.io/get-pip.py' -o get-pip.py \ && python3 get-pip.py \