From 9f0e7205d93e0eddab18e789683996464972ff5b Mon Sep 17 00:00:00 2001 From: rare-magma Date: Sat, 27 Jul 2024 11:20:32 +0200 Subject: [PATCH] ci: use apt-get, remove redundant curl Signed-off-by: rare-magma --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1039bfd59..80e087eb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY ./yarn.lock yarn.lock COPY ./.yarnrc .yarnrc COPY ./prisma/schema.prisma prisma/schema.prisma -RUN apt update && apt install -y \ +RUN apt-get update && apt-get install -y \ g++ \ git \ make \ @@ -55,9 +55,7 @@ FROM node:20-slim LABEL org.opencontainers.image.source="https://github.com/ghostfolio/ghostfolio" ENV NODE_ENV=production -RUN apt update && apt install -y \ - curl \ - openssl \ +RUN apt-get update && apt-get install -y openssl \ && rm -rf /var/lib/apt/lists/* COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps