Compare commits
No commits in common. "d01eae92d50cef2e74780de69e2f6c380ca827b7" and "dc83fe564666a85440d34946b302d58aa489129b" have entirely different histories.
d01eae92d5
...
dc83fe5646
4 changed files with 1796 additions and 3419 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,5 +2,4 @@ node_modules/
|
||||||
dist/
|
dist/
|
||||||
service-worker.build.js
|
service-worker.build.js
|
||||||
.env
|
.env
|
||||||
static/images/mockups
|
static/images/mockups
|
||||||
.yarn/
|
|
|
@ -1 +0,0 @@
|
||||||
nodeLinker: node-modules
|
|
|
@ -1,20 +1,18 @@
|
||||||
FROM git.webdeploy.it/webdeploy/yarn AS build
|
FROM node:18 AS build
|
||||||
|
|
||||||
WORKDIR /usr
|
WORKDIR /usr
|
||||||
COPY .yarnrc.yml ./
|
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
COPY yarn.lock ./
|
COPY yarn.lock ./
|
||||||
RUN yarn install --immutable
|
RUN yarn install --frozen-lockfile
|
||||||
COPY . ./
|
COPY . ./
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
FROM git.webdeploy.it/webdeploy/yarn
|
FROM node:18-alpine3.16
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY .yarnrc.yml ./
|
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
COPY yarn.lock ./
|
COPY yarn.lock ./
|
||||||
RUN yarn install --immutable
|
RUN yarn install --frozen-lockfile
|
||||||
COPY --from=build /usr/build /app
|
COPY --from=build /usr/build /app
|
||||||
|
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
5201
frontend/yarn.lock
5201
frontend/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue