We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baf1e78 commit c5daf64Copy full SHA for c5daf64
1 file changed
Dockerfile
@@ -1,6 +1,8 @@
1
FROM node:22-slim AS builder
2
WORKDIR /app
3
4
+RUN apt-get update -y && apt-get install -y openssl
5
+
6
COPY package.json pnpm-lock.yaml* ./
7
RUN corepack enable && pnpm install --frozen-lockfile
8
@@ -17,11 +19,6 @@ ENV PORT=3000
17
19
ENV HOSTNAME=0.0.0.0
18
20
EXPOSE 3000
21
-RUN apt-get update -y && apt-get install -y --no-install-recommends openssl ca-certificates \
- && rm -rf /var/lib/apt/lists/*
22
-
23
-RUN npm install -g prisma@6.15.0
24
25
COPY --from=builder /app/.next/standalone ./
26
COPY --from=builder /app/.next/static ./.next/static
27
# TODO: uncomment when we add public directory
0 commit comments