mirror of
https://github.com/matrix-construct/construct
synced 2024-11-12 21:11:14 +01:00
12 lines
500 B
Bash
Executable file
12 lines
500 B
Bash
Executable file
#!/bin/sh
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
docker pull ubuntu:18.04
|
|
docker build -t jevolk/construct:ubuntu-18.04 $BASEDIR/ubuntu/base
|
|
docker build -t jevolk/construct:ubuntu-18.04-clang-9 $BASEDIR/ubuntu/clang-9
|
|
docker build -t jevolk/construct:ubuntu-18.04-gcc-8 $BASEDIR/ubuntu/gcc-8
|
|
docker build -t jevolk/construct:ubuntu-18.04-gcc-9 $BASEDIR/ubuntu/gcc-9
|
|
|
|
docker push jevolk/construct:ubuntu-18.04-clang-9
|
|
docker push jevolk/construct:ubuntu-18.04-gcc-8
|
|
docker push jevolk/construct:ubuntu-18.04-gcc-9
|