aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 87e8ba2efb989e91c97814dd16f155b77e12b0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM docker.io/rusian/hyperbola:v0.4.4

RUN pacman -Syu --noconfirm && pacman -S --noconfirm \
nginx rsync cronie util-linux findutils && \
pacman -Scc --noconfirm

RUN mkdir /srv/repo

COPY entrypoint.bash /
RUN chmod u+x /entrypoint.bash

VOLUME /srv/repo
EXPOSE 80

ENTRYPOINT ["/entrypoint.bash"]