Add Dockerfile deployment for Coolify

This commit is contained in:
2026-07-07 19:23:38 +02:00
parent 4d46ef287a
commit bc98dd0cb5
6 changed files with 177 additions and 174 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:24-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80