2021-07-15 21:57:20 +00:00
|
|
|
|
FROM alpine:edge AS liblsquic-builder
|
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
|
|
RUN apk add --no-cache build-base git apk-tools abuild cmake go perl linux-headers
|
|
|
|
|
|
|
|
|
|
RUN abuild-keygen -a -n && \
|
|
|
|
|
cp /root/.abuild/-*.rsa.pub /etc/apk/keys/
|
|
|
|
|
|
|
|
|
|
COPY docker/APKBUILD-boringssl boringssl/APKBUILD
|
|
|
|
|
RUN cd boringssl && abuild -F -r && cd ..
|
|
|
|
|
|
|
|
|
|
RUN apk add --repository /root/packages/src boringssl boringssl-dev boringssl-static
|
|
|
|
|
|
|
|
|
|
RUN apk add --no-cache zlib-dev zlib-static libevent-dev libevent-static
|
|
|
|
|
|
|
|
|
|
COPY docker/APKBUILD-lsquic lsquic/APKBUILD
|
|
|
|
|
RUN cd lsquic && abuild -F -r && cd ..
|
|
|
|
|
|
|
|
|
|
RUN apk add --repository /root/packages/src lsquic-static
|
|
|
|
|
|
|
|
|
|
RUN mkdir tmp && cd tmp && \
|
|
|
|
|
ar -x /usr/lib/libssl.a && \
|
|
|
|
|
ar -x /usr/lib/libcrypto.a && \
|
|
|
|
|
ar -x /usr/lib/liblsquic.a && \
|
|
|
|
|
ar rc liblsquic.a *.o && \
|
|
|
|
|
strip --strip-unneeded liblsquic.a && \
|
|
|
|
|
ranlib liblsquic.a && \
|
|
|
|
|
cp liblsquic.a /root/liblsquic.a && \
|
|
|
|
|
cd .. && rm -rf tmp
|
|
|
|
|
|
|
|
|
|
|
2021-08-12 21:33:28 +00:00
|
|
|
|
FROM crystallang/crystal:1.1.1-alpine AS builder
|
2021-07-15 21:57:20 +00:00
|
|
|
|
RUN apk add --no-cache sqlite-static yaml-static
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
COPY --from=liblsquic-builder /root/liblsquic.a ./lib/lsquic/src/lsquic/ext/liblsquic.a
|
|
|
|
|
|
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"
|
|
|
|
|
|
2019-11-26 23:20:23 +00:00
|
|
|
|
RUN crystal build ./src/invidious.cr \
|
2020-06-16 23:04:41 +00:00
|
|
|
|
--static --warnings all \
|
2019-11-26 23:20:23 +00:00
|
|
|
|
--link-flags "-lxml2 -llzma"
|
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" ]
|