Merge pull request #82 from GCSLaoLi/5.x

更新Docker配置
This commit is contained in:
COOL 2022-06-27 16:37:29 +08:00 committed by GitHub
commit b4e1f6bad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

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

View File

@ -1,3 +1,4 @@
FROM node:lts-alpine
WORKDIR /app
@ -12,7 +13,7 @@ RUN apk add --no-cache tzdata
ENV TZ="Asia/Shanghai"
# 如果各公司有自己的私有源可以替换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
@ -28,4 +29,4 @@ RUN npm install --production
# 如果端口更换,这边可以更新一下
EXPOSE 8001
CMD ["npm", "run", "docker"]
CMD ["npm", "run", "start"]