forked from midou/invidious
Merge pull request #665 from leonklingele/improve-dockerfile
docker: various improvements to Dockerfile
This commit is contained in:
commit
f7dc4cca2c
@ -1,15 +1,28 @@
|
||||
FROM archlinux/base
|
||||
|
||||
RUN pacman -Sy --noconfirm shards crystal imagemagick librsvg \
|
||||
which pkgconf gcc ttf-liberation glibc
|
||||
# base-devel contains many other basic packages, that are normally assumed to already exist on a clean arch system
|
||||
|
||||
ADD . /invidious
|
||||
|
||||
FROM alpine:latest AS builder
|
||||
RUN apk add -u crystal shards libc-dev \
|
||||
yaml-dev libxml2-dev sqlite-dev sqlite-static zlib-dev openssl-dev
|
||||
WORKDIR /invidious
|
||||
COPY ./shard.yml ./shard.yml
|
||||
RUN shards update && shards install
|
||||
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/
|
||||
RUN crystal build --static --release \
|
||||
# TODO: Remove next line, see https://github.com/crystal-lang/crystal/issues/7946
|
||||
-Dmusl \
|
||||
./src/invidious.cr
|
||||
|
||||
RUN sed -i 's/host: localhost/host: postgres/' config/config.yml && \
|
||||
shards update && shards install && \
|
||||
crystal build src/invidious.cr
|
||||
|
||||
FROM alpine:latest
|
||||
RUN apk add -u imagemagick ttf-opensans
|
||||
WORKDIR /invidious
|
||||
RUN addgroup -g 1000 -S invidious && \
|
||||
adduser -u 1000 -S invidious -G invidious
|
||||
COPY ./assets/ ./assets/
|
||||
COPY ./config/config.yml ./config/config.yml
|
||||
COPY ./config/sql/ ./config/sql/
|
||||
COPY ./locales/ ./locales/
|
||||
RUN sed -i 's/host: localhost/host: postgres/' config/config.yml
|
||||
COPY --from=builder /invidious/invidious .
|
||||
USER invidious
|
||||
CMD [ "/invidious/invidious" ]
|
||||
|
Loading…
Reference in New Issue
Block a user