Spotter-VM/basic-runtimes.sh

12 lines
410 B
Bash

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