#!/bin/bash

if [ "$#" -ne 1 ]; then
  echo "Usage: $0 IMAGE_NAME" >&2
  exit 1
fi

sudo docker build -t $1 .
