summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
blob: 0197db948d66994428c203e19791105d0a30c10a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM archlinux/base

RUN pacman -Sy --noconfirm shards crystal imagemagick librsvg \
    which pkgconf gcc ttf-liberation
# base-devel contains many other basic packages, that are normally assumed to already exist on a clean arch system

ADD . /invidious

WORKDIR /invidious

RUN sed -i 's/host: localhost/host: postgres/' config/config.yml && \
    shards && \
    crystal build src/invidious.cr

CMD [ "/invidious/invidious" ]