From dc190c8cf4234c592cebcae2beb9a23c12c7d599 Mon Sep 17 00:00:00 2001 From: KotaHusky Date: Wed, 27 Mar 2024 12:11:21 -0400 Subject: [PATCH] fix: relative path, not absolute --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc023f9..b4dbc6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM node:18-alpine as runner WORKDIR /app -COPY package.json package-lock.json ./ -COPY apps/msal-react-demo/next.config.js ./ +COPY ./package.json package-lock.json ./ +COPY ./apps/msal-react-demo/next.config.js ./ # Copy the .next directory and the public directory -COPY apps/msal-react-demo/.next ./.next -COPY apps/msal-react-demo/public ./public +COPY ./apps/msal-react-demo/.next ./.next +COPY ./apps/msal-react-demo/public ./public EXPOSE 3000