mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 10:43:35 +02:00
11 lines
164 B
Docker
Executable file
11 lines
164 B
Docker
Executable file
FROM node:13.10.1-alpine
|
|
|
|
RUN mkdir /project
|
|
WORKDIR /project
|
|
|
|
COPY . .
|
|
|
|
RUN npm install -g @vue/cli
|
|
RUN yarn install
|
|
ENV HOST=0.0.0.0
|
|
CMD ["yarn", "run", "serve"]
|