Commit 8f87b3e 1 parent ca897e4 commit 8f87b3e Copy full SHA for 8f87b3e
File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 2
2
FROM python:3.10-slim-bullseye AS backend-build
3
3
4
4
RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ pkg-config \
6
+ build-essential \
7
+ git \
5
8
libpq-dev \
6
9
&& rm -rf /var/lib/apt/lists/*
7
10
11
+
8
12
WORKDIR /app
9
13
10
14
COPY ./requirements /app/requirements
11
- RUN pip install pip 'setuptools<59.0' -U
15
+ RUN pip install pip --upgrade
12
16
RUN pip install -r requirements/production.txt
13
17
14
18
@@ -29,7 +33,7 @@ RUN npm run build
29
33
30
34
31
35
# Stage 3 - Build docker image suitable for execution and deployment
32
- FROM python:3.10-buster AS production
36
+ FROM python:3.10-slim-bullseye AS production
33
37
34
38
# Stage 3.1 - Set up the needed production dependencies
35
39
# install all the dependencies for GeoDjango
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ certifi==2020.12.5
20
20
# elastic-apm
21
21
# requests
22
22
# sentry-sdk
23
- cffi==1.14.6
23
+ cffi==1.16.0
24
24
# via cryptography
25
25
chardet==4.0.0
26
26
# via requests
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ certifi==2020.12.5
27
27
# elastic-apm
28
28
# requests
29
29
# sentry-sdk
30
- cffi==1.14.6
30
+ cffi==1.16.0
31
31
# via
32
32
# -r requirements/base.txt
33
33
# cryptography
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ certifi==2020.12.5
41
41
# elastic-apm
42
42
# requests
43
43
# sentry-sdk
44
- cffi==1.14.6
44
+ cffi==1.16.0
45
45
# via
46
46
# -r requirements/ci.txt
47
47
# cryptography
You can’t perform that action at this time.
0 commit comments