Skip to content

Commit

Permalink
move docker to root
Browse files Browse the repository at this point in the history
  • Loading branch information
Max-im committed Aug 4, 2023
1 parent 86ae808 commit 509ded8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions server/Dockerfile → Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ FROM node:14 AS client-builder

WORKDIR /usr/app/client

COPY ../client/package*.json ./
COPY ./client/package*.json ./

RUN npm install

COPY ../client ./
COPY ./client ./

RUN npm run build

Expand All @@ -16,7 +16,7 @@ FROM node:14 AS server-builder

WORKDIR /usr/app

COPY ./package*.json ./
COPY ./server/package*.json ./

RUN npm install

Expand Down

0 comments on commit 509ded8

Please sign in to comment.