awesome-compose/vuejs/vuejs/Dockerfile
Guillaume Lours 4478c5c142 Udpdate some README.md files and change the version of node image for vuejs sample
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
2020-03-24 17:00:48 +01:00

12 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"]