mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-19 11:42:43 +00:00
13 lines
367 B
Docker
13 lines
367 B
Docker
FROM debian:bookworm
|
|
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
|
|
|