Skip to content

Commit 579e44e

Browse files
kylemclarenclaude
andcommitted
Fix Dockerfile: add ca-certificates for HTTPS
The node:22-slim image doesn't include CA certificates, causing curl to fail when downloading the install script. Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent d99d094 commit 579e44e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN corepack enable && corepack prepare pnpm@latest --activate
1010

1111
# Install packages needed for sharp native module and CLI
1212
RUN apt-get update -qq && \
13-
apt-get install --no-install-recommends -y build-essential git pkg-config python-is-python3 curl && \
13+
apt-get install --no-install-recommends -y build-essential git pkg-config python-is-python3 curl ca-certificates && \
1414
rm -rf /var/lib/apt/lists/*
1515

1616
# Install Sprites CLI

0 commit comments

Comments
 (0)