12 lines
214 B
Docker

FROM node:lts-alpine
WORKDIR /app
COPY . /app
RUN npm config set registry "https://registry.npmmirror.com/" \
&& npm install -g npm husky \
&& npm install --production
EXPOSE 3000
CMD ["node", "app.js"]