fix(frontend): use top level yarn

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2022-11-11 10:44:19 +01:00
parent 0e8396e8ed
commit 2302447cd9
No known key found for this signature in database
GPG key ID: B97799103358209B
4 changed files with 4 additions and 838 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
nodeLinker: node-modules
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
- path: ../.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
yarnPath: .yarn/releases/yarn-3.2.4.cjs
yarnPath: ../.yarn/releases/yarn-3.2.4.cjs

View file

@ -9,7 +9,8 @@ ENV NEXT_TELEMETRY_DISABLED=1
ARG BUILD_VERSION=CLIENT_VERSION_MISSING
WORKDIR /app
COPY . ./
COPY --chown=node .yarn ../.yarn
COPY --chown=node frontend ./
RUN rm -rf public/public && \
rm -rf src/pages/api && \
yarn install --immutable && \