7 lines
234 B
Docker
7 lines
234 B
Docker
FROM docker.io/ubuntu:26.04
|
|
|
|
ARG MIRROR=mirrors.aliyun.com
|
|
|
|
RUN sed "s#archive.ubuntu.com#${MIRROR}#" /etc/apt/sources.list.d/ubuntu.sources -i && \
|
|
sed "s#security.ubuntu.com#${MIRROR}#" /etc/apt/sources.list.d/ubuntu.sources -i
|