aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 97a173a572d1ace039ac1d9952a9bb0fff9c6e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"]