aigenai commited on
Commit
6d84893
·
verified ·
1 Parent(s): aaf85fd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM nocodb/nocodb:latest
2
 
3
- ARG CACHEBUST=1
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 && git clone -b new https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
 
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 \