Live-reload dockerfile
FROM node:7.8.0 | |
ENV NPM_CONFIG_LOGLEVEL warn | |
WORKDIR /app | |
COPY package.json ./ | |
RUN npm install | |
RUN npm install -g nodemon | |
COPY . ./ | |
EXPOSE 3001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment