Skip to content

Commit 2102861

Browse files
committed
chore(passport): bump version
1 parent c8ea4ae commit 2102861

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

rootfs/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM registry.drycc.cc/drycc/base:${CODENAME} as build-app
44
ADD web /web
55
WORKDIR /web
66

7-
ENV NODE_VERSION="20"
7+
ENV NODE_VERSION="22"
88

99
RUN install-stack node $NODE_VERSION && . init-stack \
1010
&& npm install --global yarn \
@@ -16,7 +16,7 @@ FROM registry.drycc.cc/drycc/base:${CODENAME}
1616
ENV DRYCC_UID=1001 \
1717
DRYCC_GID=1001 \
1818
DRYCC_HOME_DIR=/workspace \
19-
PYTHON_VERSION="3.12"
19+
PYTHON_VERSION="3.13"
2020

2121
RUN groupadd drycc --gid ${DRYCC_GID} \
2222
&& useradd drycc -u ${DRYCC_UID} -g ${DRYCC_GID} -s /bin/bash -m -d ${DRYCC_HOME_DIR}

rootfs/Dockerfile.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM registry.drycc.cc/drycc/base:${CODENAME}
33

44
ENV DRYCC_HOME_DIR=/workspace \
55
PGDATA="/var/lib/postgresql/data" \
6-
PYTHON_VERSION="3.12" \
7-
POSTGRES_VERSION="15.5" \
6+
PYTHON_VERSION="3.13" \
7+
POSTGRES_VERSION="15.12" \
88
GOSU_VERSION="1.17"
99

1010
COPY requirements.txt ${DRYCC_HOME_DIR}/requirements.txt

rootfs/dev_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# test module
22
# test
33
# Run "make test-unit" for the % of code exercised during tests
4-
coverage==7.6.1
4+
coverage==7.8.0
55

66
# Run "make test-style" to check python syntax and style
7-
flake8==7.1.1
7+
flake8==7.2.0
88

99
# mock out python-requests, mostly k8s
1010
requests-mock==1.12.1

rootfs/requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Drycc passport requirements
2-
django==4.2.16
3-
pytz==2024.2
2+
django==4.2.20
3+
pytz==2025.2
44
django-auth-ldap==5.1.0
5-
django-cors-headers==4.6.0
6-
djangorestframework==3.15.2
5+
django-cors-headers==4.7.0
6+
djangorestframework==3.16.0
77
gunicorn==23.0.0
8-
uvicorn==0.32.0
8+
uvicorn==0.34.0
99
asgiref==3.8.1
10-
psycopg[binary]==3.2.3
10+
psycopg[binary]==3.2.6
1111
requests==2.32.3
1212
requests-toolbelt==1.0.0
1313
django_redis==5.4.0
1414
dj-database-url==2.3.0
1515
django-oauth-toolkit==3.0.1
16-
whitenoise==6.8.2
16+
whitenoise==6.9.0

0 commit comments

Comments
 (0)