Adjust Dockerfile to enable healthcheck (#2913)

pull/2914/head
Daniel Bodky 5 months ago committed by GitHub
parent 0a35d5f236
commit a9985b65b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,7 +13,6 @@ COPY ./.yarnrc .yarnrc
COPY ./prisma/schema.prisma prisma/schema.prisma
RUN apt update && apt install -y \
curl \
g++ \
git \
make \
@ -53,6 +52,7 @@ RUN yarn database:generate-typings
# Image to run, copy everything needed from builder
FROM node:18-slim
RUN apt update && apt install -y \
curl \
openssl \
&& rm -rf /var/lib/apt/lists/*

Loading…
Cancel
Save