Add frontend Dockerfile

This commit is contained in:
2026-01-26 21:50:10 +11:00
parent 4cc1a556ac
commit 79f2e67d6e

18
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy application files
COPY . .
# Expose Vite dev server port
EXPOSE 5173
# Start development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]