From 638c9c7197e06e08173d76cb28156bc29f5899c3 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Mon, 16 Jun 2025 10:13:05 -0600 Subject: [PATCH] ugh im so bad at this --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 96627f3..6229505 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:24-alpine WORKDIR /app # Copy dependency files first for better caching -COPY package.json package-lock.yaml ./ +COPY package.json package-lock.json ./ # Install dependencies RUN npm install --prod