Skip to content

Commit e92c691

Browse files
committed
fix: Add wget to Dockerfile for Coolify healthcheck
Stu Mason + AI <me@stumason.dev>
1 parent 933592e commit e92c691

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
FROM python:3.12-slim
22

3-
# Install system dependencies (curl for health checks, psycopg dependencies)
3+
# Install system dependencies (curl/wget for health checks)
44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
curl \
6+
wget \
67
&& rm -rf /var/lib/apt/lists/*
78

89
# Install uv

0 commit comments

Comments
 (0)