mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 19:05:18 +00:00
Merge pull request #1762 from qodo-ai/tr/docker_action
fix: update Docker base image to slim version and install required de…
This commit is contained in:
commit
eb1138148b
1 changed files with 3 additions and 1 deletions
|
|
@ -1,4 +1,6 @@
|
|||
FROM python:3.12 as base
|
||||
FROM python:3.12.10-slim AS base
|
||||
|
||||
RUN apt-get update && apt-get install --no-install-recommends -y git curl && apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
ADD pyproject.toml .
|
||||
|
|
|
|||
Loading…
Reference in a new issue