diff --git a/build.sh b/build.sh deleted file mode 100755 index 3f196a412c..0000000000 --- a/build.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash -# -# $1 is the version number - -set -e - -if [ $# -eq 0 ] ; then - VERSION="0.0.1-alpha" -else - VERSION=$1 -fi - -echo Building Docker image: dotnet -docker build -t dotnet --no-cache ./$VERSION/ -docker tag -f dotnet dotnet:$VERSION -docker tag -f dotnet msimons/dotnet -docker tag -f dotnet msimons/dotnet:$VERSION - -echo Building Docker image: dotnet:onbuild -docker build -t dotnet:onbuild --no-cache ./$VERSION/onbuild -docker tag -f dotnet:onbuild dotnet:${VERSION}-onbuild -docker tag -f dotnet:onbuild msimons/dotnet:onbuild -docker tag -f dotnet:onbuild msimons/dotnet:${VERSION}-onbuild - diff --git a/publish.sh b/publish.sh deleted file mode 100755 index 8dd4317d8c..0000000000 --- a/publish.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash -# -# $1 is the version number - -set -e - -if [ $# -eq 0 ] ; then - VERSION="0.0.1-alpha" -else - VERSION=$1 -fi - -echo Pushing Docker images: msimons/dotnet:latest, msimons/dotnet:$VERSION -docker push msimons/dotnet -docker push msimons/dotnet:$VERSION - -echo Pushing Docker images: msimons/dotnet:onbuild, msimons/dotnet:${VERSION}-onbuild -docker push msimons/dotnet:onbuild -docker push msimons/dotnet:${VERSION}-onbuild