This commit is contained in:
小鹏 2022-07-06 14:44:33 +08:00
commit 8fe0c03b84
2 changed files with 6 additions and 5 deletions

View File

@ -13,7 +13,7 @@ run/
*.un~ *.un~
.tsbuildinfo .tsbuildinfo
.tsbuildinfo.* .tsbuildinfo.*
src/app/public/uploads/ .audit
typings/ typings/
.cache public/uploads/
.serverless/ cache/

View File

@ -1,3 +1,4 @@
FROM node:lts-alpine FROM node:lts-alpine
WORKDIR /app WORKDIR /app
@ -12,7 +13,7 @@ RUN apk add --no-cache tzdata
ENV TZ="Asia/Shanghai" ENV TZ="Asia/Shanghai"
# 如果各公司有自己的私有源可以替换registry地址,如使用官方源注释下一行 # 如果各公司有自己的私有源可以替换registry地址,如使用官方源注释下一行
RUN npm config set registry https://repo.huaweicloud.com/repository/npm/ RUN npm config set registry https://registry.npm.taobao.org
# 安装开发期依赖 # 安装开发期依赖
COPY package.json ./package.json COPY package.json ./package.json
@ -28,4 +29,4 @@ RUN npm install --production
# 如果端口更换,这边可以更新一下 # 如果端口更换,这边可以更新一下
EXPOSE 8001 EXPOSE 8001
CMD ["npm", "run", "docker"] CMD ["npm", "run", "start"]