From 189ab5b03c92586892c39eb13435d5fa8951f3cb Mon Sep 17 00:00:00 2001 From: Ihor_Zhekov Date: Thu, 30 Apr 2026 16:25:15 +0200 Subject: [PATCH] Add Dockerfile for Coolify deployment --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f871315 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:20-alpine AS build +WORKDIR /app +COPY package*.json ./ +RUN npm ci +COPY . . +RUN npm run build + +FROM nginx:alpine +COPY --from=build /app/dist /usr/share/nginx/html +COPY nginx.conf /etc/nginx/conf.d/default.conf +EXPOSE 80