Update Dockerfile
Browse files- Dockerfile +21 -14
Dockerfile
CHANGED
@@ -1,15 +1,23 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
-
|
|
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
HOME_DIR=/home/nocodb \
|
9 |
-
PORT=7860 \
|
10 |
-
RESTORE_BACKUP=false
|
11 |
|
12 |
-
RUN
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
RUN --mount=type=secret,id=DB_Host,mode=0444,required=true \
|
15 |
--mount=type=secret,id=DB_Port,mode=0444,required=true \
|
@@ -19,10 +27,10 @@ RUN --mount=type=secret,id=DB_Host,mode=0444,required=true \
|
|
19 |
apt-get update && apt-get install -y git curl \
|
20 |
&& git clone -b new https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
|
21 |
# 复制src下的所有文件夹及文件到/tmp/
|
22 |
-
&& cp -r /tmp/hf-nocodb/src/* /tmp/ && cp /tmp/startup.sh /
|
23 |
-
&& chmod +x
|
24 |
# 检查是否存在各sh文件
|
25 |
-
&& ls -l /tmp/ && ls -l /
|
26 |
# 安装 setup.sh
|
27 |
&& chmod +x /tmp/setup.sh && /tmp/setup.sh \
|
28 |
# 环境变量设置
|
@@ -32,5 +40,4 @@ USER ${USER}
|
|
32 |
|
33 |
WORKDIR ${WORKDIR}
|
34 |
|
35 |
-
|
36 |
-
CMD ["/usr/src/appEntry/startup.sh"]
|
|
|
1 |
+
FROM nikolaik/python-nodejs:python3.12-nodejs22
|
2 |
|
3 |
+
# 添加 CACHEBUST 参数
|
4 |
+
ARG CACHEBUST=1
|
5 |
|
6 |
+
ENV USER=pn \
|
7 |
+
HOME_DIR=/home/pn \
|
8 |
+
PORT=7860
|
|
|
|
|
|
|
9 |
|
10 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
11 |
+
apt-utils \
|
12 |
+
build-essential \
|
13 |
+
libpq-dev \
|
14 |
+
neofetch \
|
15 |
+
git \
|
16 |
+
curl \
|
17 |
+
vim \
|
18 |
+
&& rm -rf /var/lib/apt/lists/*
|
19 |
+
|
20 |
+
WORKDIR ${HOMEDIR}
|
21 |
|
22 |
RUN --mount=type=secret,id=DB_Host,mode=0444,required=true \
|
23 |
--mount=type=secret,id=DB_Port,mode=0444,required=true \
|
|
|
27 |
apt-get update && apt-get install -y git curl \
|
28 |
&& git clone -b new https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
|
29 |
# 复制src下的所有文件夹及文件到/tmp/
|
30 |
+
&& cp -r /tmp/hf-nocodb/src/* /tmp/ && cp /tmp/startup.sh ${HOME_DIR}/startup.sh \
|
31 |
+
&& chmod +x ${HOME_DIR}/*.sh \
|
32 |
# 检查是否存在各sh文件
|
33 |
+
&& ls -l /tmp/ && ls -l ${HOME_DIR}/ \
|
34 |
# 安装 setup.sh
|
35 |
&& chmod +x /tmp/setup.sh && /tmp/setup.sh \
|
36 |
# 环境变量设置
|
|
|
40 |
|
41 |
WORKDIR ${WORKDIR}
|
42 |
|
43 |
+
CMD ["/usr/src/appEntry/startup.sh"]
|
|