All checks were successful
Build and push container image / build-and-push-image (push) Successful in 9m20s
15 lines
428 B
Docker
15 lines
428 B
Docker
FROM ubuntu:24.04
|
|
LABEL org.opencontainers.image.authors="dockerimage@dresi.wtf"
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends rsync && \
|
|
apt-get clean autoclean && \
|
|
apt-get autoremove -y && \
|
|
rm -rf /var/lib/{apt,dpkg,cache,log}/
|
|
|
|
EXPOSE 873
|
|
VOLUME /volume
|
|
ADD ./run.sh /usr/local/bin/run.sh
|
|
RUN chmod +x /usr/local/bin/run.sh
|
|
ENTRYPOINT ["/usr/local/bin/run.sh"]
|