Skip to content

Commit

Permalink
sync up the releast container
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravenwater committed Apr 24, 2023
1 parent e120f89 commit dbe076b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/build_release_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# example would be to strace an executable to find its dependencies

MAJOR=v3
MINOR=68
MINOR=69
VERSION="$MAJOR.$MINOR"

if [[ $# == 0 ]]; then
# default is to build with GCC 10
docker build --force-rm -t "stillwater/universal:$VERSION" -t stillwater/universal:latest -f "../Dockerfile.gcc10" ..
docker build --force-rm -t "stillwater/universal:$VERSION" -t stillwater/universal:latest -f "Dockerfile.gcc10" ..
else
# pick up the compiler to use
COMPILER=$1
docker build --force-rm -t "stillwater/universal:$VERSION" -t stillwater/universal:latest -f "../Dockerfile.$COMPILER" ..
docker build --force-rm -t "stillwater/universal:$VERSION" -t stillwater/universal:latest -f "Dockerfile.$COMPILER" ..
fi

0 comments on commit dbe076b

Please sign in to comment.