2020-07-19 22:26:41 -04:00
|
|
|
|
FROM crystallang/crystal:0.35.1-alpine AS builder
|
2020-06-16 19:04:41 -04:00
|
|
|
|
RUN apk add --no-cache curl sqlite-static
|
2018-09-26 03:46:08 -04:00
|
|
|
|
WORKDIR /invidious
|
2020-04-30 21:35:34 -04:00
|
|
|
|
COPY ./shard.yml ./shard.yml
|
|
|
|
|
RUN shards update && shards install && \
|
2020-05-29 21:06:43 -04:00
|
|
|
|
# TODO: Document build instructions
|
|
|
|
|
# See https://github.com/omarroth/boringssl-alpine/blob/master/APKBUILD,
|
|
|
|
|
# https://github.com/omarroth/lsquic-alpine/blob/master/APKBUILD,
|
|
|
|
|
# https://github.com/omarroth/lsquic.cr/issues/1#issuecomment-631610081
|
|
|
|
|
# for details building static lib
|
2020-07-19 22:26:41 -04:00
|
|
|
|
curl -Lo ./lib/lsquic/src/lsquic/ext/liblsquic.a https://omar.yt/lsquic/liblsquic-v2.18.1.a
|
2019-08-01 06:49:12 -04: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 18:20:23 -05:00
|
|
|
|
RUN crystal build ./src/invidious.cr \
|
2020-06-16 19:04:41 -04:00
|
|
|
|
--static --warnings all \
|
2019-11-26 18:20:23 -05:00
|
|
|
|
--link-flags "-lxml2 -llzma"
|
2018-09-26 03:46:08 -04:00
|
|
|
|
|
2019-11-26 18:20:23 -05:00
|
|
|
|
FROM alpine:latest
|
2019-10-28 10:46:59 -04:00
|
|
|
|
RUN apk add --no-cache librsvg ttf-opensans
|
2019-11-26 18:20:23 -05:00
|
|
|
|
WORKDIR /invidious
|
2019-08-01 06:49:12 -04:00
|
|
|
|
RUN addgroup -g 1000 -S invidious && \
|
|
|
|
|
adduser -u 1000 -S invidious -G invidious
|
|
|
|
|
COPY ./assets/ ./assets/
|
2020-04-30 21:35:34 -04:00
|
|
|
|
COPY --chown=invidious ./config/config.yml ./config/config.yml
|
|
|
|
|
RUN sed -i 's/host: \(127.0.0.1\|localhost\)/host: postgres/' config/config.yml
|
2019-08-01 06:49:12 -04:00
|
|
|
|
COPY ./config/sql/ ./config/sql/
|
|
|
|
|
COPY ./locales/ ./locales/
|
2019-11-26 18:20:23 -05:00
|
|
|
|
COPY --from=builder /invidious/invidious .
|
2020-04-30 21:35:34 -04:00
|
|
|
|
|
2019-08-01 06:49:12 -04:00
|
|
|
|
USER invidious
|
2018-09-26 03:46:08 -04:00
|
|
|
|
CMD [ "/invidious/invidious" ]
|