- Introduced Caddy server for serving frontend and API backend. - Implemented admin dashboard for creating, editing, and managing events. - Replaced session-based authentication with token-based OAuth using Gitea. - Added support for drag-and-drop event reordering in the admin interface. - Standardized Fastify route validation with JSON schemas. - Enhanced authentication flow with cookie-based state and secure token storage. - Reworked backend routes to handle publishing, event management, and content updates. - Updated `Dockerfile.caddy` and `fly.toml` for deployment configuration.
24 lines
632 B
Docker
24 lines
632 B
Docker
FROM node:20-alpine AS build
|
|
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
# Fallback to npm install if no lockfile is present
|
|
RUN npm ci || npm install
|
|
COPY . .
|
|
# Ensure CSS variables are present
|
|
RUN mkdir -p public/styles
|
|
RUN cp -r styles/* public/styles/ || true
|
|
RUN npm run build
|
|
|
|
FROM node:20-alpine AS production
|
|
|
|
WORKDIR /app
|
|
RUN npm install -g serve
|
|
COPY --from=build /app/dist ./dist
|
|
|
|
EXPOSE 3000
|
|
# Serve static files (no SPA fallback), so /admin serves dist/admin/index.html
|
|
CMD ["serve", "-l", "3000", "dist"]
|
|
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
|
CMD wget -qO- http://localhost:3000/ || exit 1 |