2021-10-27 12:05:13 +08:00

12 lines
215 B
Docker

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