2024-02-27 14:13:02 +00:00
|
|
|
FROM python:3.12.1-slim-bookworm
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y -q git-core curl \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
RUN git config --global --add safe.directory /app
|
|
|
|
|
|
|
|
RUN pip install --upgrade pip
|
2024-02-29 10:27:06 +00:00
|
|
|
RUN pip install poetry==1.8.1
|