From 4663e2a856201905ea1c16962ed111fb5d9db990 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Tue, 2 Apr 2024 14:12:22 +0200 Subject: [PATCH] Install reqs to the final container --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 6a02118..be7fe8c 100644 --- a/Containerfile +++ b/Containerfile @@ -19,7 +19,7 @@ RUN chmod +x /out/sops FROM python:3.12.2-slim-bullseye AS build-image COPY --from=compile-image /opt/venv /opt/venv RUN apt-get update && \ - apt-get install age ssh -y + apt-get install age ssh git -y COPY . /src COPY --from=dudo /out/sops /usr/bin/sops ENV PATH="/opt/venv/bin:$PATH"