chore: Fix libssl url (#146)

* Fix openssl lib download url

* Fix
This commit is contained in:
Anatolios Laskaris 2023-06-02 12:02:53 +03:00 committed by GitHub
parent 3cdbba8395
commit deac3dae84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -55,9 +55,9 @@ RUN \
# install missing libssl
RUN \
wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.22_amd64.deb \
&& dpkg -i libssl1.1_1.1.1-1ubuntu2.1~18.04.22_amd64.deb \
&& rm libssl1.1_1.1.1-1ubuntu2.1~18.04.22_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb \
&& dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb \
&& rm libssl1.1_1.1.1f-1ubuntu2_amd64.deb
# aqua-ipfs builtin default env variables
# instruct aqua-ipfs (client) to work with an IPFS node hosted on ipfs.fluence.dev

View File

@ -1,4 +1,4 @@
#!/usr/bin/with-contenv sh
#!/usr/bin/with-contenv bash
if [[ $IPFS_DAEMON == "false" ]]; then
echo "IPFS daemon will not start"