From 94e09a546b68992f42145b531e0f68d3b079217c Mon Sep 17 00:00:00 2001 From: "Maxime Alves LIRMM@home" Date: Tue, 12 Oct 2021 18:16:16 +0200 Subject: [PATCH] [dockerfile] install git --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index dd158b5..05f2b99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM docker.io/python:3.8.12-slim-bullseye COPY . /halfapi WORKDIR /halfapi +RUN apt-get update > /dev/null && apt-get -y install git > /dev/null RUN pip install gunicorn uvicorn RUN pip install . CMD gunicorn halfapi.app