Fix docker not building on some OS
This commit is contained in:
parent
82948c1f55
commit
92607a788e
1 changed files with 2 additions and 2 deletions
|
@ -3,9 +3,9 @@ FROM node:17.6.0-alpine3.15 as builder
|
|||
|
||||
WORKDIR /src
|
||||
|
||||
COPY package.json package-lock.json /src
|
||||
COPY package.json package-lock.json /src/
|
||||
RUN npm ci
|
||||
COPY . /src
|
||||
COPY . /src/
|
||||
RUN npm run build
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue