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

This commit is contained in:
Marc Schäfer
2025-10-07 11:25:07 +02:00
parent 9ac4cee48d
commit d31d08c1c8

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