From 13f48e445b37427dfd1f2d9ba10b7eb14414d8c7 Mon Sep 17 00:00:00 2001 From: FrozenFOXX Date: Thu, 12 Mar 2020 00:03:44 -0700 Subject: [PATCH] Create Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..27e866a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +# Base image +FROM ubuntu:18.04 + +# Variables +ENV CRAWL_REPO=https://github.com/crawl/crawl.git \ + BUILD_DEPS="git" + +# Logic +apt update && \ + upgrade -y && \ + install -y ${BUILD_DEPS} + +git clone ${CRAWL_REPO} /src/