File size: 1,226 Bytes
3627eaa
2e70148
 
0b3631a
efb04cd
2e70148
efb04cd
0b3631a
efb04cd
2e70148
efb04cd
 
 
 
2e70148
 
0b3631a
2e70148
efb04cd
 
 
0b3631a
e760bb1
c6318a5
e760bb1
2e70148
 
0935b83
46cc69d
0b3631a
2e70148
e760bb1
2e70148
 
0b3631a
2e70148
 
0b3631a
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
#2024.7.28 修改 自动获取最新下载链接,使用通配符*匹配最新程序目录(有更新时,直接点Factory rebuild,即可获取最新的文件更新)
# 使用官方Ubuntu基础镜像
FROM ubuntu:latest

# 安装curl、unzip、jq和sed(用于编辑文件和解析JSON)
RUN apt-get update && \
    apt-get install -y curl unzip jq sed

# 设置工作目录
WORKDIR /app

# 使用GitHub API获取最新版本的下载链接
RUN curl -L $(curl -s https://api.github.com/repos/wozulong/fuclaude/releases/latest | \
                 jq -r '.assets[] | select(.name | contains("linux-amd64")) | .browser_download_url') -o fuclaude.zip && \
    unzip -P linux.do fuclaude.zip && \
    rm fuclaude.zip

# 进入程序目录
WORKDIR /app
RUN mv fuclaude-* fuclaude
WORKDIR /app/fuclaude

# 修改文件权限,确保可读可写
RUN chmod 666 config.json

# 修改配置文件
RUN sed -i 's/127.0.0.1/0.0.0.0/' config.json && \
    sed -i 's/"signup_enabled": false/"signup_enabled": true/' config.json && \
    sed -i 's/"show_session_key": false/"show_session_key": false/' config.json

# 确保程序文件可执行
RUN chmod +x fuclaude 

# 暴露端口8181
EXPOSE 8181

# 运行程序
CMD ["./fuclaude"]