Files
Tarokka/Dockerfile
Gavin McDonald 48bc2533c5 docker config
2025-04-18 15:52:35 -04:00

16 lines
203 B
Docker

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"]