v0.1.7: Fix blog navbar consistency with Git Repository link

This commit is contained in:
lotherk
2026-03-27 15:14:49 +00:00
parent a5f1f89176
commit eb016863c2
4 changed files with 15 additions and 7 deletions

View File

@@ -2,12 +2,16 @@ FROM alpine:latest AS version
COPY VERSION.txt /tmp/version.txt
FROM node:20-alpine AS builder
ARG GIT_URL=https://git.kropa.tech/lotherk/deardiary
ARG APP_URL=https://deardiary.hiddenbox.org
WORKDIR /app/www
COPY www/package.json www/package-lock.json ./
RUN npm install
COPY www/ ./
ENV GIT_URL=$GIT_URL
ENV APP_URL=$APP_URL
RUN node build-blog.js
FROM nginx:alpine