invidious/docker/Dockerfile

16 行
460 B
Docker
Raw 通常表示 履歴

2018-09-26 16:46:08 +09:00
FROM archlinux/base
RUN pacman -Sy --noconfirm shards crystal imagemagick librsvg \
2019-04-30 22:56:24 +09:00
which pkgconf gcc ttf-liberation glibc
2018-09-26 16:46:08 +09:00
# 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 && \
2019-03-01 04:49:29 +09:00
shards update && shards install && \
2018-09-26 16:46:08 +09:00
crystal build src/invidious.cr
CMD [ "/invidious/invidious" ]