dockerize stack

This commit is contained in:
2025-06-22 03:13:03 +02:00
parent c4caaddb10
commit d74105529e
10 changed files with 643 additions and 1 deletions

22
server/Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM node:22-alpine
# Set working directory
WORKDIR /opt/app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Copy source code
COPY . .
# Build the application
RUN npm run build
# Expose port
EXPOSE 1337
# Start the application
CMD ["npm", "start"]