Spotter-VM/basic-runtimes.sh
2018-07-15 21:55:35 +02:00

13 lines
351 B
Bash
Executable File

#!/bin/sh
set -e
SOURCE_DIR=$(realpath $(dirname "${0}"))/basic-runtimes
# Build Docker images
docker build -t java ${SOURCE_DIR}/java
docker build -t php ${SOURCE_DIR}/php
docker build -t python2 ${SOURCE_DIR}/python2
docker build -t python3 ${SOURCE_DIR}/python3
docker build -t ruby ${SOURCE_DIR}/ruby
docker build -t tomcat ${SOURCE_DIR}/tomcat