From 40b6f33ee292017b07d9d87c3a44cc61c89ed1bc Mon Sep 17 00:00:00 2001 From: William Perron Date: Wed, 7 Sep 2022 01:18:51 +0000 Subject: [PATCH] add sqlite3 to Docker image --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f86b67..340c434 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,5 +14,6 @@ WORKDIR /themis COPY --from=builder /app/bin/themis-server /usr/local/bin/themis-server COPY --from=litestream /download/litestream /usr/local/bin/litestream COPY --from=builder /app/start.sh ./start.sh -RUN apt update -y; apt install -y ca-certificates; apt-get clean +# install ca-certificates for outbound https calls, and sqlite3 for debugging +RUN apt update -y; apt install -y ca-certificates sqlite3; apt-get clean ENTRYPOINT ["./start.sh"] \ No newline at end of file