Create Dockerfile
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal 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/
|
||||
Reference in New Issue
Block a user