@dazhicheng/common 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +2 -1
- package/nginx_dev.conf +1 -1
- package/nginx_test.conf +1 -1
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -10,7 +10,8 @@ RUN npm install -g pnpm && \
|
|
|
10
10
|
ARG NODE_ENV=dev
|
|
11
11
|
|
|
12
12
|
# 先复制依赖文件并安装依赖
|
|
13
|
-
COPY package*.json pnpm-lock.yaml* pnpm-workspace.yaml
|
|
13
|
+
COPY package*.json pnpm-lock.yaml* pnpm-workspace.yaml ./
|
|
14
|
+
COPY scripts/sync-common.mjs ./scripts/
|
|
14
15
|
RUN pnpm install
|
|
15
16
|
|
|
16
17
|
|
package/nginx_dev.conf
CHANGED
|
@@ -16,7 +16,7 @@ server {
|
|
|
16
16
|
proxy_set_header Host $host;
|
|
17
17
|
proxy_set_header X-Real-Ip $remote_addr;
|
|
18
18
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
19
|
-
proxy_pass http://
|
|
19
|
+
proxy_pass http://fulfillment-dev.tiantai-jp.com:11000/;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
error_page 500 502 503 504 /50x.html;
|
package/nginx_test.conf
CHANGED
|
@@ -16,7 +16,7 @@ server {
|
|
|
16
16
|
proxy_set_header Host $host;
|
|
17
17
|
proxy_set_header X-Real-Ip $remote_addr;
|
|
18
18
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
19
|
-
proxy_pass http://
|
|
19
|
+
proxy_pass http://fulfillment-test.tiantai-jp.com:11000/;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
error_page 500 502 503 504 /50x.html;
|