8 lines
64 B
Docker
8 lines
64 B
Docker
FROM node
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
CMD ["npm", "run", "dev"]
|