Create Dockerfile

This commit is contained in:
FrozenFOXX
2020-03-12 00:03:44 -07:00
committed by GitHub
parent 12062d2e06
commit 13f48e445b

13
Dockerfile Normal file
View File

@@ -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/