mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-17 18:27:49 +00:00
33 lines
1.2 KiB
Docker
33 lines
1.2 KiB
Docker
FROM rockylinux:9.3 AS builder
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
RUN sed -e 's|^mirrorlist=|#mirrorlist=|g' \
|
|
-e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.ustc.edu.cn/rocky|g' \
|
|
-i.bak \
|
|
/etc/yum.repos.d/rocky-extras.repo \
|
|
/etc/yum.repos.d/rocky.repo
|
|
|
|
RUN dnf makecache
|
|
|
|
RUN yum install wget git unzip gcc openssl-devel pkgconf-pkg-config -y
|
|
|
|
# install protoc
|
|
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v31.1/protoc-31.1-linux-x86_64.zip \
|
|
&& unzip protoc-31.1-linux-x86_64.zip -d protoc3 \
|
|
&& mv protoc3/bin/* /usr/local/bin/ && chmod +x /usr/local/bin/protoc \
|
|
&& mv protoc3/include/* /usr/local/include/ && rm -rf protoc-31.1-linux-x86_64.zip protoc3
|
|
|
|
# install flatc
|
|
RUN wget https://github.com/google/flatbuffers/releases/download/v25.2.10/Linux.flatc.binary.g++-13.zip \
|
|
&& unzip Linux.flatc.binary.g++-13.zip \
|
|
&& mv flatc /usr/local/bin/ && chmod +x /usr/local/bin/flatc \
|
|
&& rm -rf Linux.flatc.binary.g++-13.zip
|
|
|
|
# install rust
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
COPY .docker/cargo.config.toml /root/.cargo/config.toml
|
|
|
|
WORKDIR /root/s3-rustfs
|