Compare commits

..

No commits in common. "d01eae92d50cef2e74780de69e2f6c380ca827b7" and "dc83fe564666a85440d34946b302d58aa489129b" have entirely different histories.

4 changed files with 1796 additions and 3419 deletions

3
.gitignore vendored
View file

@ -2,5 +2,4 @@ node_modules/
dist/
service-worker.build.js
.env
static/images/mockups
.yarn/
static/images/mockups

View file

@ -1 +0,0 @@
nodeLinker: node-modules

View file

@ -1,20 +1,18 @@
FROM git.webdeploy.it/webdeploy/yarn AS build
FROM node:18 AS build
WORKDIR /usr
COPY .yarnrc.yml ./
COPY package.json ./
COPY yarn.lock ./
RUN yarn install --immutable
RUN yarn install --frozen-lockfile
COPY . ./
RUN yarn build
FROM git.webdeploy.it/webdeploy/yarn
FROM node:18-alpine3.16
WORKDIR /app
COPY .yarnrc.yml ./
COPY package.json ./
COPY yarn.lock ./
RUN yarn install --immutable
RUN yarn install --frozen-lockfile
COPY --from=build /usr/build /app
EXPOSE 8000

File diff suppressed because it is too large Load diff