Fix layer dependency

This commit is contained in:
tleydxdy 2020-04-23 21:41:10 -04:00
parent fb7f945beb
commit 4b51383ae9

View File

@ -1,19 +1,18 @@
FROM alpine:edge AS builder FROM alpine:edge AS builder
WORKDIR /invidious WORKDIR /invidious
COPY ./shard.yml ./shard.yml RUN apk add --no-cache curl crystal shards libc-dev \
RUN apk add crystal shards libc-dev \
yaml-dev libxml2-dev sqlite-dev zlib-dev openssl-dev \ yaml-dev libxml2-dev sqlite-dev zlib-dev openssl-dev \
yaml-static sqlite-static zlib-static openssl-libs-static && \ yaml-static sqlite-static zlib-static openssl-libs-static
shards update && shards install && \ COPY ./shard.yml ./shard.yml
apk add curl && \ RUN shards update && shards install && \
curl -Lo /etc/apk/keys/omarroth.rsa.pub https://github.com/omarroth/boringssl-alpine/releases/download/1.1.0-r0/omarroth.rsa.pub && \ curl -Lo /etc/apk/keys/omarroth.rsa.pub https://github.com/omarroth/boringssl-alpine/releases/download/1.1.0-r0/omarroth.rsa.pub && \
curl -Lo boringssl-dev.apk https://github.com/omarroth/boringssl-alpine/releases/download/1.1.0-r0/boringssl-dev-1.1.0-r0.apk && \ curl -Lo boringssl-dev.apk https://github.com/omarroth/boringssl-alpine/releases/download/1.1.0-r0/boringssl-dev-1.1.0-r0.apk && \
curl -Lo lsquic.apk https://github.com/omarroth/lsquic-alpine/releases/download/2.6.3-r0/lsquic-2.6.3-r0.apk && \ curl -Lo lsquic.apk https://github.com/omarroth/lsquic-alpine/releases/download/2.6.3-r0/lsquic-2.6.3-r0.apk && \
apk verify boringssl-dev.apk lsquic.apk && \ apk verify --no-cache boringssl-dev.apk lsquic.apk && \
tar -xf boringssl-dev.apk usr/lib/libcrypto.a usr/lib/libssl.a && \ tar -xf boringssl-dev.apk usr/lib/libcrypto.a usr/lib/libssl.a && \
tar -xf lsquic.apk usr/lib/liblsquic.a && \ tar -xf lsquic.apk usr/lib/liblsquic.a && \
mv usr/lib/* lib/lsquic/src/lsquic/ext && \ mv usr/lib/* lib/lsquic/src/lsquic/ext && \
rm -r usr boringssl-dev.apk lsquic.apk /var/cache/apk/* rm -r usr boringssl-dev.apk lsquic.apk /root/.cache
COPY ./src/ ./src/ COPY ./src/ ./src/
# TODO: .git folder is required for building this is destructive. # TODO: .git folder is required for building this is destructive.
# See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION. # See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION.