diff --git a/Dockerfile b/Dockerfile index dc91c51..ddd263e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ # Use the official Node.js image as the base image 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 WORKDIR /usr/src/app @@ -13,6 +17,8 @@ RUN npm ci # Copy the rest of the application files COPY . . +RUN chmod +x ./bin/regctl + # Build the NestJS application RUN npm run build diff --git a/bin/regctl b/bin/regctl index 4125fc3..2b88870 100755 Binary files a/bin/regctl and b/bin/regctl differ