From 6d70dfa5038b8530f429ad57e2ca4d43f9d616af Mon Sep 17 00:00:00 2001 From: Daniel Bodky Date: Tue, 23 Jan 2024 18:11:04 +0100 Subject: [PATCH] Adjusts Dockerfile to enable healthcheck introduced in 5fc84a0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f72be00d7..be2935e2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,6 @@ COPY ./.yarnrc .yarnrc COPY ./prisma/schema.prisma prisma/schema.prisma RUN apt update && apt install -y \ - curl \ g++ \ git \ make \ @@ -54,6 +53,7 @@ RUN yarn database:generate-typings FROM node:18-slim RUN apt update && apt install -y \ openssl \ + curl \ && rm -rf /var/lib/apt/lists/* COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps