From e78f79e460b191cd5239e40800562634cf91f48d Mon Sep 17 00:00:00 2001 From: Joe Becher Date: Sat, 24 Aug 2019 13:13:04 -0400 Subject: [PATCH] install git and mercurial --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 64edaf5..5364411 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:latest WORKDIR /app COPY . /app -RUN apt update && apt install -y curl +RUN apt update && apt install -y curl git mercurial RUN chmod +x /app/entrypoint.sh