From a1c6116099dd191e69276c7d01e61726739247d2 Mon Sep 17 00:00:00 2001 From: mst Date: Wed, 19 Mar 2025 13:37:58 +0300 Subject: [PATCH] fix dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 76bb50f..dd9ac7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3-alpine WORKDIR /catask COPY . . -RUN pip install --no-cache-dir -r requirements.txt +RUN apk add --no-cache postgresql-client && \ + pip install --no-cache-dir -r requirements.txt -ENTRYPOINT [ "gunicorn", "-w", "4", "app:app", "--bind", "0.0.0.0:8000" ] \ No newline at end of file +ENTRYPOINT [ "gunicorn", "-w", "4", "app:app", "--bind", "0.0.0.0:8000" ]