We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29d8ac commit 46eb206Copy full SHA for 46eb206
1 file changed
Dockerfile
@@ -28,6 +28,11 @@ RUN npm run build
28
# --- Stage 2: Production dependencies only ------------------------------------
29
FROM node:20-bookworm-slim AS prod-deps
30
ENV NODE_ENV=production
31
+
32
+RUN apt-get update && apt-get install -y --no-install-recommends \
33
+ openssl ca-certificates \
34
+ && rm -rf /var/lib/apt/lists/*
35
36
WORKDIR /app
37
38
COPY package.json package-lock.json ./
@@ -45,6 +50,11 @@ ENV NODE_ENV=production \
45
50
HOST=0.0.0.0 \
46
51
PORT=4321
47
52
53
+# Install OpenSSL for Prisma
54
55
56
57
48
58
49
59
60
# Copy built app & runtime dependencies
0 commit comments