This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
vuetest/Dockerfile

10 lines
135 B
Docker
Raw Normal View History

2019-01-11 10:57:03 +00:00
FROM node:latest
# some dir for our code
WORKDIR /app
# container port
EXPOSE 8080
# install vue binary
RUN yarn global add @vue/cli