mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-06 21:52:54 +08:00
This patch enables cloudpos basic service image to be built on RISC-V platforms and support build script to work on RISC-V platforms. Signed-off-by: Jinyu Zhao <1813479822@qq.com> Co-authored-by: Jinyu Zhao <1813479822@qq.com>
10 lines
226 B
Docker
10 lines
226 B
Docker
# registry.cn-beijing.aliyuncs.com/yunionio/debian10-base:1.0
|
|
|
|
FROM debian:trixie
|
|
|
|
RUN apt update && apt install -y alien
|
|
|
|
RUN apt-get clean autoclean && \
|
|
apt-get autoremove --yes && \
|
|
rm -rf /var/lib/{apt,dpkg,cache,log}/
|