Merge from main + Update efy submodule

This commit is contained in:
dragos-efy
2023-01-07 18:42:23 +02:00
parent 14d79e5cea
commit 2c043461ea
32 changed files with 594 additions and 380 deletions

View File

@@ -2,12 +2,16 @@ FROM node:lts-alpine AS build
WORKDIR /app/
RUN --mount=type=cache,target=/var/cache/apk \
apk add --no-cache \
curl
COPY . .
RUN --mount=type=cache,target=/root/.cache/yarn \
--mount=type=cache,target=/app/node_modules \
yarn install --prefer-offline && \
yarn build && sed -i 's/fonts.gstatic.com/fonts.kavin.rocks/g' dist/assets/*.css
yarn build && ./localizefonts.sh
FROM nginx:alpine