File size: 209 Bytes
e7abd9e
 
 
 
 
 
 
 
7b6b120
e7abd9e
 
7b6b120
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:18

WORKDIR /app

# Copy package.json and package-lock.json
COPY package*.json ./

# Install project dependencies
RUN yarn install

# Volume will be mounted here, no need for COPY
CMD ["yarn", "dev"]