From d31d08c1c8d08ac62d973e004ba63d71e1d1af97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Sch=C3=A4fer?= Date: Tue, 7 Oct 2025 11:25:07 +0200 Subject: [PATCH] feat: Update Dockerfile to include installation of git and ca-certificates --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index b9b6dea..2ae125d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,10 @@ +#ghcr.io/marcschaeferger/newt-private:1.0.0-otel +#tademsh/newt:1.0.0-otel FROM golang:1.25-alpine AS builder +# Install git and ca-certificates +RUN apk --no-cache add ca-certificates git tzdata + # Set the working directory inside the container WORKDIR /app