Compare commits
2 commits
6496a47566
...
ca4c7e0b10
Author | SHA1 | Date | |
---|---|---|---|
ca4c7e0b10 | |||
12e3990bc2 |
3 changed files with 3607 additions and 3474 deletions
|
@ -1,20 +1,18 @@
|
|||
FROM git.webdeploy.it/webdeploy/yarn AS build
|
||||
|
||||
WORKDIR /usr
|
||||
COPY .yarnrc.yml ./
|
||||
COPY package.json ./
|
||||
COPY yarn.lock ./
|
||||
RUN yarn install --immutable
|
||||
COPY package-lock.json ./
|
||||
RUN npm ci
|
||||
COPY . ./
|
||||
RUN yarn build
|
||||
|
||||
FROM git.webdeploy.it/webdeploy/yarn
|
||||
|
||||
WORKDIR /app
|
||||
COPY .yarnrc.yml ./
|
||||
COPY package.json ./
|
||||
COPY yarn.lock ./
|
||||
RUN yarn install --immutable
|
||||
COPY package-lock.json ./
|
||||
RUN npm ci
|
||||
COPY --from=build /usr/build /app
|
||||
|
||||
EXPOSE 8000
|
||||
|
|
3603
frontend/package-lock.json
generated
Normal file
3603
frontend/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
3468
frontend/yarn.lock
3468
frontend/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue