FROM ubuntu:latest # RUN apk add --no-cache # 如果 rustfs 有依赖,可以在这里添加,例如: # RUN apk add --no-cache openssl # RUN apk add --no-cache bash # 安装 Bash WORKDIR /app # Create a directory that is consistent with RUSTFS_VOLUMES RUN mkdir -p /root/data/target/volume/test1 /root/data/target/volume/test2 /root/data/target/volume/test3 /root/data/target/volume/test4 # COPY ./target/x86_64-unknown-linux-musl/release/rustfs /app/rustfs COPY ./target/x86_64-unknown-linux-gnu/release/rustfs /app/rustfs RUN chmod +x /app/rustfs EXPOSE 9000 CMD ["/app/rustfs"]