Skip to content

Commit

Permalink
fix: relative path, not absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
KotaHusky committed Mar 27, 2024
1 parent 77e8805 commit dc190c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit dc190c8

Please sign in to comment.