Adiciona Dockerfile e nginx.conf para deploy no Coolify

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcio Bevervanso 2026-06-17 13:02:46 -03:00
parent 045e84e74c
commit 3ce4148120
2 changed files with 42 additions and 0 deletions

31
Dockerfile Normal file
View file

@ -0,0 +1,31 @@
# Build phase
FROM node:20-alpine AS builder
WORKDIR /app
# Copy dependency info
COPY package.json package-lock.json ./
# Install all dependencies
RUN npm ci
# Copy the rest of the application code
COPY . .
# Build the application
RUN npm run build
# Serve phase
FROM nginx:alpine
# Copy the build output to replace the default nginx contents
COPY --from=builder /app/dist /usr/share/nginx/html
# Copy our custom nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 8080
EXPOSE 8080
# Start nginx
CMD ["nginx", "-g", "daemon off;"]

11
nginx.conf Normal file
View file

@ -0,0 +1,11 @@
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}