Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Multi-stage build for production optimization
FROM node:20-bullseye AS build
FROM node:20.19-bullseye AS build
WORKDIR /app
# Use official Node.js runtime as base image
FROM node:20-slim
FROM node:20.19-slim

# Install curl for health checks
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
Expand All @@ -24,7 +24,7 @@ RUN npm ci
COPY . .
RUN npm run build

FROM node:20-alpine AS runtime
FROM node:20.19-alpine AS runtime
WORKDIR /app
ENV NODE_ENV=production
COPY package*.json ./
Expand Down
24 changes: 14 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"react-refresh": "^0.18.0",
"tailwindcss": "^4.1.17",
"ts-node": "^10.9.2",
"typescript": "^5.0.2",
"typescript": "^5.4.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^4.0.17"
Expand Down
Loading