2021-06-08 13:20:46 -07:00
|
|
|
|
FROM crystallang/crystal:1.0.0-alpine AS builder
|
2021-03-17 10:59:02 -07:00
|
|
|
|
RUN apk add --no-cache curl sqlite-static yaml-static
|
2018-09-26 00:46:08 -07:00
|
|
|
|
WORKDIR /invidious
|
2020-04-30 18:35:34 -07:00
|
|
|
|
COPY ./shard.yml ./shard.yml
|
2020-12-09 23:18:30 -08:00
|
|
|
|
COPY ./shard.lock ./shard.lock
|
2021-03-13 13:14:27 -08:00
|
|
|
|
RUN shards install && \
|
|
|
|
|
curl -Lo ./lib/lsquic/src/lsquic/ext/liblsquic.a https://github.com/iv-org/lsquic-static-alpine/releases/download/v2.18.1/liblsquic.a
|
2019-08-01 03:49:12 -07:00
|
|
|
|
COPY ./src/ ./src/
|
|
|
|
|
# TODO: .git folder is required for building – this is destructive.
|
|
|
|
|
# See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION.
|
|
|
|
|
COPY ./.git/ ./.git/
|
2019-11-26 15:20:23 -08:00
|
|
|
|
RUN crystal build ./src/invidious.cr \
|
2020-06-16 16:04:41 -07:00
|
|
|
|
--static --warnings all \
|
2019-11-26 15:20:23 -08:00
|
|
|
|
--link-flags "-lxml2 -llzma"
|
2018-09-26 00:46:08 -07:00
|
|
|
|
|
2019-11-26 15:20:23 -08:00
|
|
|
|
FROM alpine:latest
|
2019-10-28 07:46:59 -07:00
|
|
|
|
RUN apk add --no-cache librsvg ttf-opensans
|
2019-11-26 15:20:23 -08:00
|
|
|
|
WORKDIR /invidious
|
2019-08-01 03:49:12 -07:00
|
|
|
|
RUN addgroup -g 1000 -S invidious && \
|
|
|
|
|
adduser -u 1000 -S invidious -G invidious
|
2021-05-09 03:26:08 -07:00
|
|
|
|
COPY ./assets/ ./assets/
|
2020-12-09 23:18:30 -08:00
|
|
|
|
COPY --chown=invidious ./config/config.* ./config/
|
|
|
|
|
RUN mv -n config/config.example.yml config/config.yml
|
2020-04-30 18:35:34 -07:00
|
|
|
|
RUN sed -i 's/host: \(127.0.0.1\|localhost\)/host: postgres/' config/config.yml
|
2021-05-09 03:26:08 -07:00
|
|
|
|
COPY ./config/sql/ ./config/sql/
|
|
|
|
|
COPY ./locales/ ./locales/
|
2019-11-26 15:20:23 -08:00
|
|
|
|
COPY --from=builder /invidious/invidious .
|
2021-05-09 03:29:06 -07:00
|
|
|
|
RUN chmod o+rX -R ./assets ./config ./locales
|
2020-04-30 18:35:34 -07:00
|
|
|
|
|
2020-12-13 10:49:54 -08:00
|
|
|
|
EXPOSE 3000
|
2019-08-01 03:49:12 -07:00
|
|
|
|
USER invidious
|
2018-09-26 00:46:08 -07:00
|
|
|
|
CMD [ "/invidious/invidious" ]
|