Yield generated for f351cbfe-a89f-49d2-8530-c49ff836fa51
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:dubnium
|
|
|
|
|
|
WORKDIR /server
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
RUN yarn install
|
|
|
|
|
|
|
|
|
CMD ["yarn", "start"]
|