mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 10:18:07 +02:00
10 lines
107 B
Text
10 lines
107 B
Text
|
FROM node:10
|
||
|
|
||
|
RUN mkdir /project
|
||
|
WORKDIR /project
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN yarn install
|
||
|
CMD ["yarn", "run", "start"]
|