From d9df64b14f84006016b35ed034dc04b47848294b Mon Sep 17 00:00:00 2001 From: thevickypedia Date: Sun, 22 Oct 2023 17:02:30 -0500 Subject: [PATCH] Install git in Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2d31fda..3c82cc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ # Pull python3.11-alpine image (smallest) FROM python:3.11-alpine +# Install git +RUN apk add --no-cache git + # Copy validator.py to root COPY src/validator.py /validator.py