First post

This commit is contained in:
2025-01-13 23:01:22 +00:00
parent d0aa75a554
commit bee5f87d61
34 changed files with 1549 additions and 13951 deletions

View File

@@ -2,9 +2,10 @@
FROM node:lts AS base
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY yarn.lock ./
RUN yarn
COPY . .
RUN npm run build
RUN yarn build
# Runtime stage for serving the application
FROM nginx:mainline-alpine-slim AS runtime