From ab84c6e18aabfb42e594c1ecd5076287df3c2984 Mon Sep 17 00:00:00 2001 From: Anthony Atkinson Date: Mon, 11 Jul 2022 12:59:58 -0400 Subject: [PATCH] Link `python3` to `python` for the `sqlite3` JS module build (#117) --- thelounge/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/thelounge/Dockerfile b/thelounge/Dockerfile index 0d36144..ac46d89 100644 --- a/thelounge/Dockerfile +++ b/thelounge/Dockerfile @@ -12,6 +12,8 @@ RUN \ python3=3.10.4-r0 \ yarn=1.22.19-r0 \ \ + && ln -s /usr/bin/python3 /usr/bin/python \ + \ && apk add --no-cache \ icu-data-full=71.1-r2 \ nginx=1.22.0-r1 \