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