Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ FROM node:18-alpine as frontend-builder
|
|
5 |
RUN apk add --no-cache git
|
6 |
|
7 |
# 克隆代码库
|
8 |
-
RUN git clone https://github.com/
|
9 |
|
10 |
# 设置前端工作目录
|
11 |
WORKDIR /app/frontend
|
@@ -27,7 +27,7 @@ RUN apt-get update && apt-get install -y \
|
|
27 |
&& rm -rf /var/lib/apt/lists/*
|
28 |
|
29 |
# 克隆代码库
|
30 |
-
RUN git clone https://github.com/
|
31 |
chmod -R 777 /app && \
|
32 |
chmod +x /app/web_server.py
|
33 |
# 安装Python依赖
|
|
|
5 |
RUN apk add --no-cache git
|
6 |
|
7 |
# 克隆代码库
|
8 |
+
RUN git clone https://github.com/zhengr/stock-scanner.git /app
|
9 |
|
10 |
# 设置前端工作目录
|
11 |
WORKDIR /app/frontend
|
|
|
27 |
&& rm -rf /var/lib/apt/lists/*
|
28 |
|
29 |
# 克隆代码库
|
30 |
+
RUN git clone https://github.com/zhengr/stock-scanner.git /app && \
|
31 |
chmod -R 777 /app && \
|
32 |
chmod +x /app/web_server.py
|
33 |
# 安装Python依赖
|