We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa24eee commit 6c61a3eCopy full SHA for 6c61a3e
src/backend/Dockerfile
@@ -1,9 +1,7 @@
1
FROM python:3.12-bullseye
2
3
-RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
4
- && apt-get -y install --no-install-recommends postgresql-client \
5
- && apt-get update && apt-get install -y xdg-utils \
6
- && apt-get clean -y && rm -rf /var/lib/apt/lists/*
+# Removed postgresql-client and xdg-utils packages as they are not used by the backend
+# The backend uses SQLAlchemy/asyncpg for PostgreSQL connections, not CLI tools
7
8
RUN python -m pip install --upgrade pip
9
0 commit comments