From 4c979bdce5884b434cd0c82a162163c1e5fded02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Thu, 17 Feb 2022 15:23:10 -0500 Subject: initial commit --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..97a173a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM rusian/hyperbola:0.4 +LABEL MAINTAINER="heckyel@hyperbola.info" + +RUN pacman -Syu --noconfirm && pacman -S --noconfirm \ + nginx rsync cronie util-linux findutils + +RUN pacman -Scc --noconfirm + +RUN mkdir /srv/repo + +COPY entrypoint.bash / +RUN chmod u+x /entrypoint.bash + +VOLUME /srv/repo +EXPOSE 80 + +ENTRYPOINT ["/entrypoint.bash"] -- cgit v1.2.3