File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11FROM python:3.11-slim
22
33RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing \
4+ libsqlite3-0=3.40.1-2+deb12u1 \
45 libgl1-mesa-glx=22.3.6-1+deb12u1 \
56 libjemalloc-dev=5.3.0-1 \
67 git=1:2.39.5-0+deb12u1 && \
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ WORKDIR /usr/src/
77# Copy the current directory contents into the container at /usr/src/app
88COPY app /usr/src/app
99
10+ # Upgrade libsqlite3 to a safe version
11+ RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing \
12+ libsqlite3-0=3.40.1-2+deb12u1 && \
13+ rm -rf /var/lib/apt/lists/*
14+
1015# Upgrade setuptools to a safe version and install any needed packages specified in requirements.txt
1116RUN pip install --no-cache-dir --upgrade pip==24.3.1 setuptools==75.3.0 && \
1217 pip install --no-cache-dir -r /usr/src/app/requirements.txt
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ uvicorn==0.30.6
33kubernetes == 30.1.0
44requests == 2.32.3
55pydantic == 1.10.18
6- starlette == 0.38.6
6+ starlette == 0.40.0
77websockets == 10.3
You can’t perform that action at this time.
0 commit comments