From 0d0a65a5e49628d7ae4b33daab34bbc9fc51c027 Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Sun, 16 Aug 2020 13:14:31 +0200 Subject: [PATCH] Add git to installed packages in Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fac5e57..e7f6469 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN useradd migrate RUN mkdir -p /var/data/db && chown -R migrate /var/data -RUN apt-get update && apt-get install --yes --no-install-recommends nginx supervisor +RUN apt-get update && apt-get install --yes --no-install-recommends nginx supervisor git RUN pip install gunicorn COPY requirements.txt ./