From 535a17af295f427a093a0636f523e6dcd277b643 Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Tue, 5 May 2026 06:44:00 +0300 Subject: [PATCH] Build and push backend --- backend/Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 6d371d1..60606d8 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -4,16 +4,11 @@ FROM harbor.dvirlabs.com/base-images/python:3.11-slim # Set working directory WORKDIR /app -# Install system dependencies -RUN apt-get update && apt-get install -y \ - gcc \ - postgresql-client \ - && rm -rf /var/lib/apt/lists/* - # Copy requirements file COPY requirements.txt . # Install Python dependencies +# Note: psycopg2-binary is pre-compiled, no gcc needed RUN pip install --no-cache-dir -r requirements.txt # Copy application code