Merge pull request #104 from trails-cool/fix-docker-ca-certs

Install ca-certificates in Docker images for Sentry uploads
This commit is contained in:
Ullrich Schäfer 2026-03-27 18:35:51 +01:00 committed by GitHub
commit f87aca6188
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
FROM node:25-slim AS base
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/*
RUN npm install -g pnpm@10.6.5
WORKDIR /app

View file

@ -1,4 +1,5 @@
FROM node:25-slim AS base
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/*
RUN npm install -g pnpm@10.6.5
WORKDIR /app