Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -5,7 +5,7 @@ ARG NC_S3_ENDPOINT
|
|
| 5 |
ARG NC_S3_ACCESS_KEY
|
| 6 |
|
| 7 |
RUN apk add --no-cache git \
|
| 8 |
-
&& git clone 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 \
|
| 11 |
&& chmod +x /usr/src/appEntry/startup.sh /tmp/s3_setup.sh /tmp/setup.sh && rm -rf /tmp/hf-nocodb
|
|
@@ -26,7 +26,7 @@ ENV LITESTREAM_S3_SKIP_VERIFY=false \
|
|
| 26 |
LITESTREAM_SYNC_INTERVAL=60s \
|
| 27 |
NC_TOOL_DIR=/usr/app/data/ \
|
| 28 |
NODE_ENV=production \
|
| 29 |
-
PORT=
|
| 30 |
NC_ALLOW_LOCAL_HOOKS=true \
|
| 31 |
NC_REDIS_URL="redis://:redis_password@localhost:6379/4" \
|
| 32 |
NC_S3_REGION=${NC_S3_REGION} \
|
|
|
|
| 5 |
ARG NC_S3_ACCESS_KEY
|
| 6 |
|
| 7 |
RUN apk add --no-cache git \
|
| 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 \
|
| 11 |
&& chmod +x /usr/src/appEntry/startup.sh /tmp/s3_setup.sh /tmp/setup.sh && rm -rf /tmp/hf-nocodb
|
|
|
|
| 26 |
LITESTREAM_SYNC_INTERVAL=60s \
|
| 27 |
NC_TOOL_DIR=/usr/app/data/ \
|
| 28 |
NODE_ENV=production \
|
| 29 |
+
PORT=7861 \
|
| 30 |
NC_ALLOW_LOCAL_HOOKS=true \
|
| 31 |
NC_REDIS_URL="redis://:redis_password@localhost:6379/4" \
|
| 32 |
NC_S3_REGION=${NC_S3_REGION} \
|