1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/docker/frontend/Dockerfile
MoonTestUse1 93511a855d 23:18
2024-12-25 23:18:15 +06:00

36 lines
679 B
Docker

# Build stage
FROM node:18-alpine as build
WORKDIR /app
# Copy package files
COPY frontend/package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY frontend/ ./
# Build the app
RUN npm run build
# Production stage
FROM nginx:alpine
# Remove default nginx static assets
RUN rm -rf /usr/share/nginx/html/*
# Copy static assets from builder stage
COPY --from=build /app/dist/ /usr/share/nginx/html/
# Copy nginx configuration
COPY docker/nginx/conf.d/default.conf /etc/nginx/conf.d/
# Ensure correct permissions
RUN chown -R nginx:nginx /usr/share/nginx/html && \
chmod -R 755 /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]