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/