Add docker file for dev

This commit is contained in:
Owen
2025-07-14 18:24:37 -07:00
parent f9798a8d86
commit 75e01018a5
4 changed files with 101 additions and 19 deletions

14
Dockerfile.dev Normal file
View File

@@ -0,0 +1,14 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY . .
# Use tsx watch for development with hot reload
CMD ["npm", "run", "dev"]