feat: Update Dockerfile to include installation of git and ca-certificates

Former-commit-id: d31d08c1c8
This commit is contained in:
Marc Schäfer
2025-10-07 11:25:07 +02:00
parent 044fd996fb
commit 8dc644ca48

View File

@@ -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