docker deployment

This commit is contained in:
Julio Cesar
2025-08-20 16:14:17 +02:00
parent ed7912129f
commit 9773484f12
4 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# Build stage
FROM node:24-alpine3.20 AS build
WORKDIR /app
# Variables for build
ARG VITE_API_URL
# Copy package files
COPY ./package*.json .
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Build the application
RUN npm run build
# Production stage
FROM nginx:stable-alpine
# Copy built assets from build stage
COPY --from=build /app/dist /usr/share/nginx/html
# Copy nginx configuration if needed
# COPY ./nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]