From e8c2d1495dfa795229a84b82a144f35250ba3b96 Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Sat, 12 Aug 2023 11:15:18 +0200 Subject: [PATCH] Update discordbot/Dockerfile --- discordbot/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/discordbot/Dockerfile b/discordbot/Dockerfile index c93ea25..bbbb1ac 100644 --- a/discordbot/Dockerfile +++ b/discordbot/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /usr/src/app COPY . . -RUN apt update && apt install -y sqlite3 +RUN apk update && apk upgrade +RUN apk add --no-cache sqlite CMD ["node", "index.js"]