From 7e53cf76f425d571832b862150d4ecf1cb96b85d Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 27 Aug 2022 20:22:20 +0100 Subject: [PATCH] Install git in container --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4b201a..d5e7655 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,8 @@ WORKDIR /app RUN apt-get update --yes --quiet && apt-get install --yes --quiet --no-install-recommends \ build-essential \ libpq-dev \ - curl + curl \ + git RUN curl -fsSL https://github.com/aptible/supercronic/releases/download/v0.2.1/supercronic-linux-amd64 -o /usr/local/bin/supercronic && chmod +x /usr/local/bin/supercronic