diff --git a/dockerfile.amd64 b/dockerfile.amd64 index b5d1596..5468edd 100644 --- a/dockerfile.amd64 +++ b/dockerfile.amd64 @@ -4,6 +4,8 @@ RUN \ # Update and install extra packages. apt-get update && \ apt-get install -y --no-install-recommends \ + # Explicitly install git. Issue #36 + git \ # Packages needed to download and extract obsidian. curl \ libnss3 \ diff --git a/dockerfile.arm64 b/dockerfile.arm64 index b7b7d6c..7db20b9 100644 --- a/dockerfile.arm64 +++ b/dockerfile.arm64 @@ -4,6 +4,8 @@ RUN \ # Update and install extra packages. apt-get update && \ apt-get install -y --no-install-recommends \ + # Explicitly install git. Issue #36 + git \ # Packages needed to download and extract obsidian. curl \ libnss3 \