Yield generated for 01d1154d-68de-4ad5-91f5-c056b14f9df2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
FROM node:12
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
RUN yarn install
|
|
|
|
|
|
ENTRYPOINT [ "yarn", "start" ]
|