From e7dcd37714adf58cd35741c6c41332fa1628019b Mon Sep 17 00:00:00 2001
From: Erwan Rouchet <rouchet@teklia.com>
Date: Tue, 6 Aug 2024 16:39:12 +0200
Subject: [PATCH] Bump to Django 5.0.8

---
 .gitlab-ci.yml        | 2 +-
 Dockerfile            | 4 ++--
 base/requirements.txt | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9bf1379ba1..22b51944af 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,7 +11,7 @@ include:
 
 # For jobs that run backend scripts directly
 .backend-setup:
-  image: registry.gitlab.teklia.com/arkindex/backend/base:django-5.0.7
+  image: registry.gitlab.teklia.com/arkindex/backend/base:django-5.0.8
 
   cache:
     paths:
diff --git a/Dockerfile b/Dockerfile
index 2a30fe2c2d..01ec3163d4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
 # syntax=docker/dockerfile:1
-FROM registry.gitlab.teklia.com/arkindex/backend/base:django-5.0.7 as build
+FROM registry.gitlab.teklia.com/arkindex/backend/base:django-5.0.8 as build
 
 RUN mkdir build
 ADD . build
 RUN cd build && python3 setup.py sdist
 
-FROM registry.gitlab.teklia.com/arkindex/backend/base:django-5.0.7
+FROM registry.gitlab.teklia.com/arkindex/backend/base:django-5.0.8
 
 # Install arkindex and its deps
 # Uses a source archive instead of full local copy to speedup docker build
diff --git a/base/requirements.txt b/base/requirements.txt
index d13cec1612..3d48b30e39 100644
--- a/base/requirements.txt
+++ b/base/requirements.txt
@@ -1,6 +1,6 @@
 boto3==1.18.13
 cryptography==3.4.7
-Django==5.0.7
+Django==5.0.8
 ed25519==1.5
 lxml==4.9.2
 psycopg2-binary==2.9.1
-- 
GitLab