docker config

This commit is contained in:
Gavin McDonald
2025-04-18 15:52:35 -04:00
parent e71aa5ad01
commit 48bc2533c5
2 changed files with 20 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20-slim
# Create app directory
WORKDIR /app
# Copy and install dependencies
COPY package*.json ./
RUN npm install
# Copy the rest of the app
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]