First attempt at building a docker image

This commit is contained in:
Simon Sapin 2018-09-06 18:48:40 +02:00
parent 721e086b33
commit 400855d707
3 changed files with 26 additions and 0 deletions

7
docker-image-build-task.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
image=$1
apt-get update
apt-get install -y --no-install-recommends docker.io
docker build -t "$image" "./docker/$image/"