From cc2679a9b2e9130c48b694e765a3bef88302ba70 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 11 Mar 2025 11:34:26 -0500 Subject: [PATCH] Adjust Dockerfile. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 3d84c92..17775b4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,7 +4,7 @@ FROM node:18-alpine AS builder WORKDIR /app # Copy package.json and install dependencies -COPY package.json package-lock.json ./ +COPY package.json pnpm-lock.yaml ./ RUN npm ci # Copy the rest of the app and build