complete revamps
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-12-24 03:20:02 +09:00
parent aca29317c6
commit 9a9c2343d1
66 changed files with 13682 additions and 4599 deletions

View File

@@ -6,13 +6,14 @@ RUN dpkg -i pandoc-2.14.0.1-1-amd64.deb
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY plugins plugins
COPY package.json package-lock.json ./
RUN npm ci
COPY themes themes
COPY source source
COPY _config.yml ./
RUN yarn build
RUN npm run build
FROM nginx:stable-alpine as runtime