Добавлен frontend Dockerfile

This commit is contained in:
2026-08-02 22:47:17 +03:00
parent 6ad9c98997
commit 67bd13d145
+12
View File
@@ -0,0 +1,12 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json .
RUN npm install --no-audit --no-fund
COPY . .
RUN npm run build
FROM nginx:1.27-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 5173
HEALTHCHECK CMD wget -q --spider http://localhost:5173/ || exit 1