2021-11-17 20:12:58 +00:00
|
|
|
|
FROM crystallang/crystal:1.2.2-alpine AS builder
|
2021-07-15 21:57:20 +00:00
|
|
|
|
RUN apk add --no-cache sqlite-static yaml-static
|
|
|
|
|
|
2021-09-01 11:24:17 +00:00
|
|
|
|
ARG release
|
|
|
|
|
|
2018-09-26 07:46:08 +00:00
|
|
|
|
WORKDIR /invidious
|
2020-05-01 01:35:34 +00:00
|
|
|
|
COPY ./shard.yml ./shard.yml
|
2020-12-10 07:18:30 +00:00
|
|
|
|
COPY ./shard.lock ./shard.lock
|
2021-07-15 21:57:20 +00:00
|
|
|
|
RUN shards install
|
|
|
|
|
|
2021-08-24 21:12:19 +00:00
|
|
|
|
COPY --from=quay.io/invidious/lsquic-compiled /root/liblsquic.a ./lib/lsquic/src/lsquic/ext/liblsquic.a
|
2021-07-15 21:57:20 +00:00
|
|
|
|
|
2019-08-01 10:49:12 +00: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/
|
2021-08-10 05:34:52 +00:00
|
|
|
|
|
|
|
|
|
RUN crystal spec --warnings all \
|
|
|
|
|
--link-flags "-lxml2 -llzma"
|
|
|
|
|
|
2022-01-04 16:53:40 +00:00
|
|
|
|
RUN if [ "${release}" == 1 ] ; then \
|
2021-09-01 11:24:17 +00:00
|
|
|
|
crystal build ./src/invidious.cr \
|
|
|
|
|
--release \
|
|
|
|
|
--static --warnings all \
|
|
|
|
|
--link-flags "-lxml2 -llzma"; \
|
|
|
|
|
else \
|
|
|
|
|
crystal build ./src/invidious.cr \
|
|
|
|
|
--static --warnings all \
|
|
|
|
|
--link-flags "-lxml2 -llzma"; \
|
|
|
|
|
fi
|
|
|
|
|
|
2018-09-26 07:46:08 +00:00
|
|
|
|
|
2019-11-26 23:20:23 +00:00
|
|
|
|
FROM alpine:latest
|
2019-10-28 14:46:59 +00:00
|
|
|
|
RUN apk add --no-cache librsvg ttf-opensans
|
2019-11-26 23:20:23 +00:00
|
|
|
|
WORKDIR /invidious
|
2019-08-01 10:49:12 +00:00
|
|
|
|
RUN addgroup -g 1000 -S invidious && \
|
|
|
|
|
adduser -u 1000 -S invidious -G invidious
|
2021-05-09 10:26:08 +00:00
|
|
|
|
COPY ./assets/ ./assets/
|
2020-12-10 07:18:30 +00:00
|
|
|
|
COPY --chown=invidious ./config/config.* ./config/
|
|
|
|
|
RUN mv -n config/config.example.yml config/config.yml
|
2020-05-01 01:35:34 +00:00
|
|
|
|
RUN sed -i 's/host: \(127.0.0.1\|localhost\)/host: postgres/' config/config.yml
|
2021-05-09 10:26:08 +00:00
|
|
|
|
COPY ./config/sql/ ./config/sql/
|
|
|
|
|
COPY ./locales/ ./locales/
|
2019-11-26 23:20:23 +00:00
|
|
|
|
COPY --from=builder /invidious/invidious .
|
2021-05-09 10:29:06 +00:00
|
|
|
|
RUN chmod o+rX -R ./assets ./config ./locales
|
2020-05-01 01:35:34 +00:00
|
|
|
|
|
2020-12-13 18:49:54 +00:00
|
|
|
|
EXPOSE 3000
|
2019-08-01 10:49:12 +00:00
|
|
|
|
USER invidious
|
2018-09-26 07:46:08 +00:00
|
|
|
|
CMD [ "/invidious/invidious" ]
|