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

9 lines
135 B
Docker

FROM node:latest
# some dir for our code
WORKDIR /app
# container port
EXPOSE 8080
# install vue binary
RUN yarn global add @vue/cli