From 262abb18f3d03e3fc5e7f14c565f30e03f93375c Mon Sep 17 00:00:00 2001 From: Ovler Date: Tue, 24 Dec 2024 12:01:50 +0800 Subject: [PATCH] fix: add wget installation to Dockerfile for health check functionality --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 48567fd..8fbd6ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ RUN apt-get update && apt-get install -y \ gcc \ default-libmysqlclient-dev \ + wget \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt .