feat: extracted Expedição Gold from Docker container (Next.js 16)

This commit is contained in:
Carlos
2026-07-03 13:16:16 +02:00
parent 1bf21f0754
commit dab3133aad
14 changed files with 27 additions and 1276 deletions
+22
View File
@@ -0,0 +1,22 @@
FROM node:20-alpine
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm ci
# Copy source code
COPY . .
# Build the application
RUN npm run build
# Set environment to production
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
# Expose port
EXPOSE 3000
# Start the application
CMD ["npm", "start"]