This commit is contained in:
Jakub Kaniecki
2025-03-30 14:46:32 +02:00
commit 4df1d9f9a6
65 changed files with 62132 additions and 0 deletions

18
backend/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Copy source code
COPY . .
# Expose port
EXPOSE 3001
# Start the application
CMD ["npm", "start"]