백엔드 도커파일 수정

This commit is contained in:
hyeonsu 2025-08-28 15:24:00 +09:00
parent f921396539
commit 0043fb1315
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@
FROM node:20-bookworm-slim AS base
WORKDIR /app
ENV NODE_ENV=production
# Install OpenSSL and required certs
# Install OpenSSL, curl (for healthcheck), and required certs
RUN apt-get update \
&& apt-get install -y --no-install-recommends openssl ca-certificates \
&& apt-get install -y --no-install-recommends openssl ca-certificates curl \
&& rm -rf /var/lib/apt/lists/*
# Dependencies stage (install deps and generate Prisma client)