Compare commits
No commits in common. "f52342988dbda13893c565eb4e41e3d521cf408c" and "3cbc02fa26ec621da197553383f96b32571dae94" have entirely different histories.
f52342988d
...
3cbc02fa26
|
|
@ -1,5 +1,4 @@
|
||||||
FROM node:18-alpine As dev
|
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 update && apk add sqlite
|
||||||
RUN apk add --no-cache --virtual .build-deps g++ gcc libgcc libstdc++ linux-headers make python3
|
RUN apk add --no-cache --virtual .build-deps g++ gcc libgcc libstdc++ linux-headers make python3
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 5.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 5.9 KiB |
|
|
@ -9,7 +9,7 @@
|
||||||
"prebuild": "rimraf dist",
|
"prebuild": "rimraf dist",
|
||||||
"nest:dev": "nest start --watch",
|
"nest:dev": "nest start --watch",
|
||||||
"dev": "nest build --webpack --webpackPath webpack.config.js --watch",
|
"dev": "nest build --webpack --webpackPath webpack.config.js --watch",
|
||||||
"build": "nest build",
|
"build": "nest build --webpack --webpackPath webpack.config.js",
|
||||||
"nest:build": "nest build",
|
"nest:build": "nest build",
|
||||||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
||||||
"start": "nest start",
|
"start": "nest start",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue