21 Star 72 Fork 73

openEuler/openeuler-docker-images
Closed

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Dockerfile 950 Bytes
Copy Edit Raw Blame History
baigj authored 2025-05-29 19:57 +08:00 . storage apps
ARG BASE=openeuler/openeuler:24.03-lts-sp1
FROM ${BASE}
ARG VERSION=6.12.3
RUN dnf update -y \
&& dnf install -y gcc cmake perl libfastcommon-devel libserverframe-devel git \
&& dnf clean all \
&& rm -rf /var/cache/dnf
WORKDIR /opt
RUN git clone -b V1.0.75 --depth 1 https://github.com/happyfish100/libfastcommon.git \
&& cd libfastcommon \
&& ./make.sh clean \
&& ./make.sh \
&& ./make.sh install \
&& cd .. \
&& rm -rf libfastcommon
RUN git clone -b V1.2.5 --depth 1 https://github.com/happyfish100/libserverframe.git \
&& cd libserverframe \
&& ./make.sh clean \
&& ./make.sh \
&& ./make.sh install \
&& cd .. \
&& rm -rf libserverframe
RUN git clone -b V${VERSION} --depth 1 https://github.com/happyfish100/fastdfs.git \
&& cd fastdfs \
&& ./make.sh clean \
&& ./make.sh \
&& ./make.sh install \
&& cd .. \
&& rm -rf fastdfs
CMD ["fdfs_storaged", "--help"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/openeuler-docker-images.git
git@gitee.com:openeuler/openeuler-docker-images.git
openeuler
openeuler-docker-images
openeuler-docker-images
master

Search