Add a step to install ca-certificates in go-nitro Dockerfile #8

Merged
nabarun merged 1 commits from nv-fix-certificates into main 2024-09-03 10:10:09 +00:00

View File

@ -19,7 +19,7 @@ RUN go build -o nitro-bridge cmd/start-bridge/main.go
# Reduce image size
FROM debian:bullseye-slim
RUN apt-get update
RUN apt-get install -y jq netcat
RUN apt-get install -y jq netcat ca-certificates
RUN rm -rf /var/lib/apt/lists/*
WORKDIR /app