mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-26 00:52:46 +00:00
Some checks failed
docker-images / multi (., tunasync-scripts, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (., tunasync-scripts, ubuntu-latest) (push) Has been cancelled
docker-images / multi (ftpsync, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (ftpsync, ubuntu-latest) (push) Has been cancelled
docker-images / multi (nix-channels, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (nix-channels, ubuntu-latest) (push) Has been cancelled
docker-images / multi (pub-mirror, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (pub-mirror, ubuntu-latest) (push) Has been cancelled
docker-images / multi (rubygems-mirror, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (rubygems-mirror, ubuntu-latest) (push) Has been cancelled
docker-images / multi (rustup-mirror, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (rustup-mirror, ubuntu-latest) (push) Has been cancelled
docker-images / multi (shadowmire, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (shadowmire, ubuntu-latest) (push) Has been cancelled
docker-images / multi (tsumugu, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (tsumugu, ubuntu-latest) (push) Has been cancelled
docker-images / merge (push) Has been cancelled
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
13 lines
369 B
Docker
13 lines
369 B
Docker
FROM debian:trixie
|
|
LABEL maintainer="Miao Wang <miao.wang@tuna.tsinghua.edu.cn>"
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends git rsync stunnel4 socat ca-certificates opensysusers && \
|
|
apt-get clean all
|
|
|
|
RUN git clone https://ftp-master.debian.org/git/archvsync.git/ /ftpsync/
|
|
WORKDIR /ftpsync/
|
|
ENV PATH=/ftpsync/bin:${PATH}
|
|
CMD ["/bin/bash"]
|
|
|