Merge pull request #1738 from qodo-ai/tr/docker_slim

Use slim Docker image and install git and curl dependencies
This commit is contained in:
Tal 2025-05-02 09:20:11 +03:00 committed by GitHub
commit 8bb207f0bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,6 @@
FROM python:3.12.3 AS base FROM python:3.12.10-slim AS base
RUN apt update && apt install --no-install-recommends -y git curl && apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app
ADD pyproject.toml . ADD pyproject.toml .