From fb0fa2a84387dac58b2273a739ee7965ce932dff Mon Sep 17 00:00:00 2001 From: LouisLam Date: Tue, 7 Sep 2021 15:36:29 +0800 Subject: [PATCH] add sqlite cli to docker --- dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dockerfile b/dockerfile index ba6cdde45..678f03d56 100644 --- a/dockerfile +++ b/dockerfile @@ -13,6 +13,12 @@ RUN apt --yes install python3-cryptography python3-six python3-yaml python3-clic RUN pip3 --no-cache-dir install apprise && \ rm -rf /root/.cache +# additional package should be added here, since we don't want to re-compile the arm prebuilt again + +# add sqlite3 cli for debugging in the future +RUN apt --yes install sqlite3 + + COPY . . RUN npm install --legacy-peer-deps && npm run build && npm prune