scratch-analysis/Dockerfile

9 lines
152 B
Text
Raw Normal View History

FROM node:16
RUN mkdir -p /var/app/current
WORKDIR /var/app/current
COPY . ./
RUN rm -rf ./node_modules
RUN npm install
RUN npm install -g nodemon tap