Browse Source

Adjusts Dockerfile to enable healthcheck introduced in 5fc84a0

pull/2913/head
Daniel Bodky 2 years ago
parent
commit
6d70dfa503
No known key found for this signature in database GPG Key ID: 9E12D1B1F1A84FA8
  1. 2
      Dockerfile

2
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

Loading…
Cancel
Save