mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
fix(frontend): use top level yarn
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
0e8396e8ed
commit
2302447cd9
4 changed files with 4 additions and 838 deletions
File diff suppressed because one or more lines are too long
801
frontend/.yarn/releases/yarn-3.2.4.cjs
vendored
801
frontend/.yarn/releases/yarn-3.2.4.cjs
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
nodeLinker: node-modules
|
nodeLinker: node-modules
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
|
- path: ../.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
|
||||||
spec: "@yarnpkg/plugin-workspace-tools"
|
spec: "@yarnpkg/plugin-workspace-tools"
|
||||||
|
|
||||||
yarnPath: .yarn/releases/yarn-3.2.4.cjs
|
yarnPath: ../.yarn/releases/yarn-3.2.4.cjs
|
||||||
|
|
|
@ -9,7 +9,8 @@ ENV NEXT_TELEMETRY_DISABLED=1
|
||||||
ARG BUILD_VERSION=CLIENT_VERSION_MISSING
|
ARG BUILD_VERSION=CLIENT_VERSION_MISSING
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . ./
|
COPY --chown=node .yarn ../.yarn
|
||||||
|
COPY --chown=node frontend ./
|
||||||
RUN rm -rf public/public && \
|
RUN rm -rf public/public && \
|
||||||
rm -rf src/pages/api && \
|
rm -rf src/pages/api && \
|
||||||
yarn install --immutable && \
|
yarn install --immutable && \
|
||||||
|
|
Loading…
Reference in a new issue