Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
FROM nocodb/nocodb:latest
|
2 |
|
3 |
-
ARG CACHEBUST=
|
4 |
|
5 |
# 设置环境变量
|
6 |
ENV WORKDIR=/usr/src/app \
|
@@ -14,7 +14,8 @@ RUN --mount=type=secret,id=DB_Host,mode=0444,required=true \
|
|
14 |
--mount=type=secret,id=DB_User,mode=0444,required=true \
|
15 |
--mount=type=secret,id=DB_Password,mode=0444,required=true \
|
16 |
--mount=type=secret,id=DB_Database,mode=0444,required=true \
|
17 |
-
apk add --no-cache git
|
|
|
18 |
# 复制src下的所有文件夹及文件到/tmp/
|
19 |
&& cp -r /tmp/hf-nocodb/src/* /tmp/ && cp /tmp/startup.sh /usr/src/appEntry/startup.sh \
|
20 |
&& chmod +x /usr/src/appEntry/*.sh \
|
|
|
1 |
FROM nocodb/nocodb:latest
|
2 |
|
3 |
+
ARG CACHEBUST=2
|
4 |
|
5 |
# 设置环境变量
|
6 |
ENV WORKDIR=/usr/src/app \
|
|
|
14 |
--mount=type=secret,id=DB_User,mode=0444,required=true \
|
15 |
--mount=type=secret,id=DB_Password,mode=0444,required=true \
|
16 |
--mount=type=secret,id=DB_Database,mode=0444,required=true \
|
17 |
+
apk add --no-cache git curl nodejs npm \
|
18 |
+
&& git clone -b new https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
|
19 |
# 复制src下的所有文件夹及文件到/tmp/
|
20 |
&& cp -r /tmp/hf-nocodb/src/* /tmp/ && cp /tmp/startup.sh /usr/src/appEntry/startup.sh \
|
21 |
&& chmod +x /usr/src/appEntry/*.sh \
|