File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- 18
1+ 20
Original file line number Diff line number Diff line change 1- FROM node:18.17 .0-alpine3.18
1+ FROM node:20.14 .0-alpine3.20
22
33RUN apk add --no-cache curl bash bash-completion chromium nss freetype harfbuzz ca-certificates openjdk11
44RUN echo @edge https://nl.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && apk add --no-cache icu-data-full wqy-zenhei@edge
5-
6- # Pnpm is used to install packages
7- RUN npm install --location=global pnpm
5+ RUN apk add font-noto-emoji
86
97RUN USER=node && \
108 GROUP=node && \
11- curl -SsL https://github.com/boxboat/fixuid/releases/download/v0.5.1 /fixuid-0.5.1 -linux-amd64.tar.gz | tar -C /usr/local/bin -xzf - && \
9+ curl -SsL https://github.com/boxboat/fixuid/releases/download/v0.6.0 /fixuid-0.6.0 -linux-amd64.tar.gz | tar -C /usr/local/bin -xzf - && \
1210 chown root:root /usr/local/bin/fixuid && \
1311 chmod 4755 /usr/local/bin/fixuid && \
1412 mkdir -p /etc/fixuid && \
@@ -25,11 +23,11 @@ ENV NODE_ENV production
2523ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
2624 PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
2725
28- COPY --chown=node:node package.json pnpm -lock.yaml ./
26+ COPY --chown=node:node package.json package -lock.json ./
2927
3028RUN chown -R node:node /home/node
3129
32- RUN pnpm install --frozen-lockfile --prod
30+ RUN npm ci --omit=dev
3331
3432COPY --chown=node:node index.html index.js index.html ./
3533COPY --chown=node:node resources/js/ ./resources/js/
Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ The PDF **cover** is **optional** : just remove the mapping on the command.
8787 - PlantUML diagrams support (see the example in docs directory)
8888 - SVG support
8989- Chore :
90- - Migration to [ pnpm] ( https://pnpm.io/ ) (no more npm)
9190 - Clean code with standard ESLint
9291 - Remove useless stuff
9392
Original file line number Diff line number Diff line change 2121 < script >
2222 window . $docsify = {
2323 name : '' ,
24- repo : ''
24+ repo : '' ,
25+ nativeEmoji : true ,
2526 }
2627 </ script >
2728 <!-- Docsify v4 -->
You can’t perform that action at this time.
0 commit comments