fix(snapshot): Dockerfile 添加 ca-certificates 修复 mc 下载 SSL 错误

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-02-23 23:11:07 -08:00
parent 685aced4e4
commit b8b4305ea5
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
openssl \ openssl \
curl \ curl \
ca-certificates \
postgresql-client \ postgresql-client \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*