mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-06 21:52:54 +08:00
15 lines
410 B
Docker
15 lines
410 B
Docker
# TODO: use 3.14 will lead 'apk add qemu-img fail on arm64'
|
|
FROM alpine:3.22.1
|
|
|
|
LABEL maintainer="Zexi Li <lizexi@yunionyun.com>"
|
|
|
|
ENV TZ="UTC"
|
|
|
|
RUN mkdir -p /opt/yunion/bin
|
|
|
|
RUN sed -i 's!https://dl-cdn.alpinelinux.org/!https://mirrors.ustc.edu.cn/!g' /etc/apk/repositories
|
|
|
|
RUN apk update && \
|
|
apk add --no-cache tzdata curl busybox-extras tcpdump strace ca-certificates && \
|
|
rm -rf /var/cache/apk/*
|