From aa1ce42efa725677f6b7cd4cd1e3cb3ff2b5b324 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Thu, 27 Mar 2025 11:16:20 +0000 Subject: [PATCH] Fixing build --- backend/Dockerfile | 1 - frontend/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 161bcec..088a3b9 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -2,7 +2,6 @@ FROM node:23-alpine AS build WORKDIR /app COPY ./package.json /app/ -COPY ./package-lock.json /app/ RUN pwd && ls -al RUN npm install COPY . . diff --git a/frontend/Dockerfile b/frontend/Dockerfile index fbac030..bbf9a8d 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,7 +1,7 @@ # Build Stage FROM node:23-alpine AS build WORKDIR /app -COPY ./package*.json ./ +COPY ./package.json /app/ RUN ls -al RUN npm install COPY . .