From 92f05992abe8e05c5684df65f344b5788f7dfcc2 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 28 Jan 2025 17:33:14 +1100 Subject: [PATCH] fix: Add git to docker image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 725a071..9fb6a86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ COPY . /app # Add mount point for data volume # VOLUME /data +RUN apk add git ENTRYPOINT ["python3"] CMD ["server.py"]