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