summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorOmar Roth <omarroth@protonmail.com>2020-07-19 22:26:41 -0400
committerOmar Roth <omarroth@protonmail.com>2020-07-19 22:26:41 -0400
commitb73c6e94c02e46d953ea5dbab3f45d84813f2b73 (patch)
treee8bee3e1ac4fd687153e4584d427686061c1e615 /docker/Dockerfile
parent07616a9d34ced84c5e2f7b078a51ccde08cf1c82 (diff)
downloadinvidious-b73c6e94c02e46d953ea5dbab3f45d84813f2b73.tar.gz
invidious-b73c6e94c02e46d953ea5dbab3f45d84813f2b73.tar.bz2
invidious-b73c6e94c02e46d953ea5dbab3f45d84813f2b73.zip
Bump docker dependencies
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 31760d71..96f844fe 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,4 +1,4 @@
-FROM crystallang/crystal:0.35.0-alpine AS builder
+FROM crystallang/crystal:0.35.1-alpine AS builder
RUN apk add --no-cache curl sqlite-static
WORKDIR /invidious
COPY ./shard.yml ./shard.yml
@@ -8,7 +8,7 @@ RUN shards update && shards install && \
# 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
+ curl -Lo ./lib/lsquic/src/lsquic/ext/liblsquic.a https://omar.yt/lsquic/liblsquic-v2.18.1.a
COPY ./src/ ./src/
# TODO: .git folder is required for building – this is destructive.
# See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION.