rsync/Dockerfile
L3D c7bfb1a69a
Some checks failed
shellchecking ansible-docker.sh / build (push) Successful in 14s
Yamllint GitHub Actions / Yamllint (push) Successful in 6s
hadolint Dockerfile / build (push) Failing after 7s
vars
2023-05-12 00:26:36 +02:00

23 lines
532 B
Docker

# hadolint ignore=DL3007
FROM debian:stable
LABEL "maintainer"="L3D <l3d@c3woc.de>"
# hadolint ignore=DL3008,DL3013,DL3015
RUN apt-get update -y && apt-get install -y \
apt-utils \
openssh-client \
software-properties-common \
build-essential \
locales \
rsync \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN echo "${inputs.source} or $source or ${SOURCE}"
# Fix potential UTF-8 errors
RUN locale-gen en_US.UTF-8
COPY rsync-docker.sh /rsync-docker.sh
ENTRYPOINT ["/rsync-docker.sh"]