formations/cesi/architecture_n_tiers/ressources/exercices/ex_microbloggr_solution/services/statuses/Dockerfile

12 lines
165 B
Docker

FROM alpine:3.7
RUN apk add --no-cache nodejs
COPY ./ /app
WORKDIR /app
RUN npm install --production
RUN npm install -g nodemon
CMD ["nodemon", "src/server.js"]