File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -30,16 +30,10 @@ RUN apt-get update \
30
30
&& apt-get install --assume-yes --no-install-recommends \
31
31
g++ \
32
32
gcc \
33
- libc6-dev \
34
- libpq-dev \
35
- zlib1g-dev \
36
33
&& python3 -m pip install --no-cache-dir -r ${REQ_FILE} \
37
34
&& apt-get purge --assume-yes --auto-remove \
38
35
g++ \
39
36
gcc \
40
- libc6-dev \
41
- libpq-dev \
42
- zlib1g-dev \
43
37
&& apt-get distclean
44
38
45
39
# copy project
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ Jinja2==3.1.6
14
14
libsass==0.23.0
15
15
Markdown==3.9
16
16
Pillow==11.3.0
17
- psycopg[c]==3.2.9
18
17
Pygments==2.19.2
19
18
pykismet3==0.1.1
20
19
requests==2.32.5
Original file line number Diff line number Diff line change 1
1
-r common.txt
2
+ psycopg[binary]==3.2.10
2
3
django-debug-toolbar==6.0.0
3
4
pre-commit~=4.3.0
4
5
watchdog==6.0.0
Original file line number Diff line number Diff line change 1
1
-r common.txt
2
+ # psycopg docs defines the "local install" method as
3
+ # "the preferred way to install Psycopg for a production site."
4
+ # https://www.psycopg.org/psycopg3/docs/basic/install.html#local-installation
5
+ # Whether or not this applies to the project is debatable, but having it doesn't seem to hurt.
6
+ psycopg[c]==3.2.10
2
7
gunicorn==23.0.0
3
8
redis==6.4.0
4
9
sentry-sdk==2.38.0
You can’t perform that action at this time.
0 commit comments