initial commit

This commit is contained in:
Jesús
2022-02-17 15:23:10 -05:00
commit 4c979bdce5
8 changed files with 929 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -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"]