From 40331c909c870043fa0a1e72897c50e5a15583aa Mon Sep 17 00:00:00 2001 From: Redume Date: Fri, 3 Jan 2025 13:28:21 +0300 Subject: [PATCH] chore(docker): Rejection of alpine version of python due to long build time and dependency issues --- chart/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/chart/Dockerfile b/chart/Dockerfile index 23f1aef..8a799a1 100644 --- a/chart/Dockerfile +++ b/chart/Dockerfile @@ -1,11 +1,9 @@ -FROM python:3.13-alpine +FROM python:3.13 WORKDIR / COPY . . -RUN apk add --no-cache gcc g++ musl-dev python3-dev libffi-dev openssl-dev postgresql-dev - RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt EXPOSE 3030