nochmal, nun alles docker-zeugs dabei

This commit is contained in:
rxf
2025-11-23 12:28:41 +01:00
parent 6727fe91d9
commit 268b4dee18
8 changed files with 96 additions and 2 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
# Copy source code
COPY . .
# Expose the application port
EXPOSE 3001
# Start the application
CMD ["npm", "run", "dev"]