2019-11-27 04:50:23 +05:30
|
|
|
|
FROM alpine:edge AS builder
|
2020-05-01 07:05:34 +05:30
|
|
|
|
RUN apk add --no-cache curl crystal shards libc-dev \
|
2019-11-27 04:50:23 +05:30
|
|
|
|
yaml-dev libxml2-dev sqlite-dev zlib-dev openssl-dev \
|
2020-05-01 07:05:34 +05:30
|
|
|
|
yaml-static sqlite-static zlib-static openssl-libs-static
|
2018-09-26 13:16:08 +05:30
|
|
|
|
WORKDIR /invidious
|
2020-05-01 07:05:34 +05:30
|
|
|
|
COPY ./shard.yml ./shard.yml
|
|
|
|
|
RUN shards update && shards install && \
|
2020-05-30 06:36:43 +05:30
|
|
|
|
# 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
|
|
|
|
|
curl -Lo ./lib/lsquic/src/lsquic/ext/liblsquic.a https://omar.yt/lsquic/liblsquic.a
|
2019-08-01 16:19:12 +05:30
|
|
|
|
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-27 04:50:23 +05:30
|
|
|
|
RUN crystal build ./src/invidious.cr \
|
2019-12-06 01:19:44 +05:30
|
|
|
|
--static --warnings all --error-on-warnings \
|
2019-11-27 04:50:23 +05:30
|
|
|
|
--link-flags "-lxml2 -llzma"
|
2018-09-26 13:16:08 +05:30
|
|
|
|
|
2019-11-27 04:50:23 +05:30
|
|
|
|
FROM alpine:latest
|
2019-10-28 20:16:59 +05:30
|
|
|
|
RUN apk add --no-cache librsvg ttf-opensans
|
2019-11-27 04:50:23 +05:30
|
|
|
|
WORKDIR /invidious
|
2019-08-01 16:19:12 +05:30
|
|
|
|
RUN addgroup -g 1000 -S invidious && \
|
|
|
|
|
adduser -u 1000 -S invidious -G invidious
|
|
|
|
|
COPY ./assets/ ./assets/
|
2020-05-01 07:05:34 +05:30
|
|
|
|
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 16:19:12 +05:30
|
|
|
|
COPY ./config/sql/ ./config/sql/
|
|
|
|
|
COPY ./locales/ ./locales/
|
2019-11-27 04:50:23 +05:30
|
|
|
|
COPY --from=builder /invidious/invidious .
|
2020-05-01 07:05:34 +05:30
|
|
|
|
|
2019-08-01 16:19:12 +05:30
|
|
|
|
USER invidious
|
2018-09-26 13:16:08 +05:30
|
|
|
|
CMD [ "/invidious/invidious" ]
|