Quellcode durchsuchen

Update Dockerfile

HoraceZhang vor 9 Monaten
Ursprung
Commit
b4bcf813a4
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      Dockerfile

+ 3 - 3
Dockerfile

@@ -1,12 +1,12 @@
 FROM alpine:latest
 FROM alpine:latest
 
 
-# 安装必要的依赖包
-RUN apk add --no-cache wget unzip ca-certificates
+# 安装必要的依赖包,包括 coreutils 提供 seq 命令
+RUN apk add --no-cache wget unzip ca-certificates coreutils
 
 
 # 设置工作目录
 # 设置工作目录
 WORKDIR /app
 WORKDIR /app
 
 
-ARG VERSION=2025.1.2.11
+ARG VERSION=2025.1.2.3
 
 
 RUN wget https://github.com/maidsafe/autonomi/releases/download/stable-${VERSION}/${VERSION}.autonomi.x86_64-unknown-linux-musl.zip \
 RUN wget https://github.com/maidsafe/autonomi/releases/download/stable-${VERSION}/${VERSION}.autonomi.x86_64-unknown-linux-musl.zip \
     && unzip -d ./temp ${VERSION}.autonomi.x86_64-unknown-linux-musl.zip \
     && unzip -d ./temp ${VERSION}.autonomi.x86_64-unknown-linux-musl.zip \