This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/Dockerfile.dev

7 lines
141 B
Docker

FROM node:14
WORKDIR /app
COPY npm-run-serve.sh /usr/bin/npm-run-serve.sh
RUN chmod +x /usr/bin/npm-run-serve.sh
CMD [ "npm-run-serve.sh" ]