6 lines
85 B
Docker
6 lines
85 B
Docker
FROM node:latest
|
|
WORKDIR /app
|
|
COPY ./ ./
|
|
RUN npm install
|
|
CMD ["npm", "run", "start"]
|