chore: docker
Some checks failed
Playwright Tests / test (push) Has been cancelled

This commit is contained in:
Loic Coenen
2025-10-31 14:50:43 +01:00
parent 0ee7532a30
commit 0a0eb667be
7 changed files with 466 additions and 56 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
# Use a Node LTS image
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose Vite dev server port
EXPOSE 5173
# Start dev server
CMD ["npm", "run", "dev", "--", "--host"]