diff --git a/Dockerfile b/Dockerfile index 1679ee5..2767d24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,10 @@ RUN apt-get -y update \ && apt-get -y upgrade \ && apt-get -y install curl wget xz-utils \ && cd /opt \ - && curl -L https://github.com/doktor83/SRBMiner-Multi/releases/download/2.4.3/SRBMiner-Multi-2-4-3-Linux.tar.xz -o SRBMiner-Multi.tar.xz \ + && curl -L https://github.com/doktor83/SRBMiner-Multi/releases/download/2.4.4/SRBMiner-Multi-2-4-4-Linux.tar.xz -o SRBMiner-Multi.tar.xz \ && tar xf SRBMiner-Multi.tar.xz \ && rm -rf SRBMiner-Multi.tar.xz \ - && mv /opt/SRBMiner-Multi-2-4-3/ /opt/SRBMiner-Multi/ \ + && mv /opt/SRBMiner-Multi-2-4-4/ /opt/SRBMiner-Multi/ \ && apt-get -y purge xz-utils \ && apt-get -y autoremove --purge \ && apt-get -y clean \ diff --git a/build.sh b/build.sh index c641324..8997335 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/bash -version="2.4.3" +version="2.4.4" image="srbminer-multi-cuda" docker build . --tag docker.io/cniweb/$image:$version docker tag docker.io/cniweb/$image:$version docker.io/cniweb/$image:latest @@ -8,8 +8,8 @@ docker tag docker.io/cniweb/$image:$version ghcr.io/cniweb/$image:latest docker tag docker.io/cniweb/$image:$version quay.io/cniweb/$image:$version docker tag docker.io/cniweb/$image:$version quay.io/cniweb/$image:latest docker push docker.io/cniweb/$image:$version -#docker push docker.io/cniweb/$image:latest +docker push docker.io/cniweb/$image:latest docker push ghcr.io/cniweb/$image:$version -#docker push ghcr.io/cniweb/$image:latest +docker push ghcr.io/cniweb/$image:latest docker push quay.io/cniweb/$image:$version -#docker push quay.io/cniweb/$image:latest +docker push quay.io/cniweb/$image:latest