File size: 1,262 Bytes
1b8b19f
511dce4
1b8b19f
1b4a151
511dce4
1b8b19f
 
 
511dce4
1b8b19f
 
 
 
 
 
 
 
 
 
 
baf329d
511dce4
 
 
 
 
2619d50
6d84893
511dce4
1b8b19f
 
511dce4
1b8b19f
511dce4
 
 
 
 
 
 
724a6d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FROM nikolaik/python-nodejs:python3.12-nodejs22

# 添加 CACHEBUST 参数
ARG CACHEBUST=1

ENV USER=pn \
    HOME_DIR=/home/pn \
    PORT=7860

RUN apt-get update && apt-get install -y --no-install-recommends \
    apt-utils \
    build-essential \
    libpq-dev \
    neofetch \
    git \
    curl \
    vim \
    && rm -rf /var/lib/apt/lists/*

WORKDIR ${HOMEDIR}

RUN --mount=type=secret,id=DB_Host,mode=0444,required=true \
    --mount=type=secret,id=DB_Port,mode=0444,required=true \
    --mount=type=secret,id=DB_User,mode=0444,required=true \
    --mount=type=secret,id=DB_Password,mode=0444,required=true \
    --mount=type=secret,id=DB_Database,mode=0444,required=true \
    apt-get update && apt-get install -y git curl \
    && git clone -b new https://github.com/aigem/hf-nocodb.git /tmp/hf-nocodb \
    # 复制src下的所有文件夹及文件到/tmp/
    && cp -r /tmp/hf-nocodb/src/* /tmp/ && cp /tmp/startup.sh ${HOME_DIR}/startup.sh \
    && chmod +x ${HOME_DIR}/*.sh \
    # 检查是否存在各sh文件
    && ls -l /tmp/ && ls -l ${HOME_DIR}/ \
    # 安装 setup.sh
    && chmod +x /tmp/setup.sh && /tmp/setup.sh \
    # 环境变量设置
    && chmod +x /tmp/env_setup.sh && /tmp/env_setup.sh

USER ${USER}

CMD ["/home/pn/startup.sh"]