From 4ee291e2ee26641c1e837b3cd2464f02215fabd8 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 25 Jul 2024 19:50:50 +0200 Subject: [PATCH] Revert apt-get to apt --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25155ea47..3f4554523 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY ./package.json package.json COPY ./package-lock.json package-lock.json COPY ./prisma/schema.prisma prisma/schema.prisma -RUN apt-get update && apt-get install -y \ +RUN apt update && apt install -y \ g++ \ git \ make \ @@ -53,7 +53,7 @@ FROM node:20-slim LABEL org.opencontainers.image.source="https://github.com/ghostfolio/ghostfolio" -RUN apt-get update && apt-get install -y \ +RUN apt update && apt install -y \ curl \ openssl \ && rm -rf /var/lib/apt/lists/*