fix Dockerfile

This commit is contained in:
Salam-vsem
2025-05-19 15:40:30 +03:00
parent cee3c8a82a
commit 773df7df44

View File

@@ -8,7 +8,7 @@ RUN npm ci --no-audit --no-fund --omit=dev && \
COPY . .
RUN npm run build
FROM nginx:alpine AS runtime
FROM nginx:alpine AS basic
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80