#!/bin/bash

image=$(grep "^# docker.io/acmel/" Dockerfile | cut -d' ' -f2)
echo $image
docker build $* -t $image .
