Compare commits

...

2 Commits

Author SHA1 Message Date
luoer f52342988d feat: 部署增加alpine镜像源设置
自动部署 / build (push) Successful in 10m11s Details
2023-11-01 08:47:38 +08:00
luoer 623779467f feat: 添加上传文件 2023-10-30 17:35:17 +08:00
5 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
FROM node:18-alpine As dev
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
RUN apk update && apk add sqlite
RUN apk add --no-cache --virtual .build-deps g++ gcc libgcc libstdc++ linux-headers make python3
WORKDIR /app

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -9,7 +9,7 @@
"prebuild": "rimraf dist",
"nest:dev": "nest start --watch",
"dev": "nest build --webpack --webpackPath webpack.config.js --watch",
"build": "nest build --webpack --webpackPath webpack.config.js",
"build": "nest build",
"nest:build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",