That's why I had certs... Update regctl
All checks were successful
Build and deploy / deploy (push) Successful in 1m24s

This commit is contained in:
2025-09-05 00:51:28 +01:00
parent 32f53eb27e
commit 590fe84b40
2 changed files with 6 additions and 0 deletions

View File

@@ -1,6 +1,10 @@
# Use the official Node.js image as the base image # Use the official Node.js image as the base image
FROM node:24-trixie-slim FROM node:24-trixie-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory inside the container # Set the working directory inside the container
WORKDIR /usr/src/app WORKDIR /usr/src/app
@@ -13,6 +17,8 @@ RUN npm ci
# Copy the rest of the application files # Copy the rest of the application files
COPY . . COPY . .
RUN chmod +x ./bin/regctl
# Build the NestJS application # Build the NestJS application
RUN npm run build RUN npm run build

Binary file not shown.