Files
docker-crawl/Dockerfile
2020-03-12 00:03:44 -07:00

14 lines
216 B
Docker

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