6
Dockerfile
Normal file
6
Dockerfile
Normal file
@@ -0,0 +1,6 @@
|
||||
FROM node:alpine
|
||||
WORKDIR /app
|
||||
COPY ./package.json ./
|
||||
RUN npm i --prod
|
||||
COPY ./ ./
|
||||
ENTRYPOINT [ "yarn","dev" ]
|
||||
Reference in New Issue
Block a user