Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
FROM nocodb/nocodb:latest
|
2 |
|
|
|
|
|
3 |
ARG NC_S3_REGION
|
4 |
ARG NC_S3_ENDPOINT
|
5 |
ARG NC_S3_ACCESS_KEY
|
6 |
|
7 |
-
RUN apk add --no-cache git curl
|
8 |
&& git clone -b dev https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
|
9 |
&& cp /tmp/hf-nocodb/src/* /tmp/ \
|
10 |
&& cp /tmp/startup.sh /usr/src/appEntry/startup.sh \
|
|
|
1 |
FROM nocodb/nocodb:latest
|
2 |
|
3 |
+
ARG CACHEBUST=1
|
4 |
+
|
5 |
ARG NC_S3_REGION
|
6 |
ARG NC_S3_ENDPOINT
|
7 |
ARG NC_S3_ACCESS_KEY
|
8 |
|
9 |
+
RUN apk add --no-cache git curl \
|
10 |
&& git clone -b dev https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
|
11 |
&& cp /tmp/hf-nocodb/src/* /tmp/ \
|
12 |
&& cp /tmp/startup.sh /usr/src/appEntry/startup.sh \
|