Skip to content

Commit e1ec258

Browse files
committed
chore(python): upgrade to python3.9
1 parent aaf0d2b commit e1ec258

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

rootfs/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
FROM docker.io/library/python:3.8-alpine
1+
FROM docker.io/library/python:3.9-alpine
22

33
COPY requirements.txt /app/requirements.txt
44

55
RUN apk add --update --virtual .build-deps \
66
postgresql-dev \
77
gcc \
8+
rust \
9+
cargo \
810
libffi-dev \
911
musl-dev \
1012
openldap-dev \

rootfs/Dockerfile.test

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/python:3.8-alpine
1+
FROM docker.io/library/python:3.9-alpine
22

33
COPY requirements.txt /app/requirements.txt
44
COPY dev_requirements.txt /app/dev_requirements.txt
@@ -8,6 +8,8 @@ RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >>/etc/apk/repositor
88
&& apk add --update --virtual .build-deps \
99
postgresql-dev \
1010
gcc \
11+
rust \
12+
cargo \
1113
libffi-dev \
1214
musl-dev \
1315
openldap-dev \

0 commit comments

Comments
 (0)