From b273d9d745ab1fb171cffbf46b52a48c6597f8fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 22:59:25 +0000 Subject: [PATCH 1/2] build(deps): bump django from 4.2.17 to 4.2.25 Bumps [django](https://github.com/django/django) from 4.2.17 to 4.2.25. - [Commits](https://github.com/django/django/compare/4.2.17...4.2.25) --- updated-dependencies: - dependency-name: django dependency-version: 4.2.25 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index baeca47f..d4f43a8e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ cryptography==43.0.1 decorator==4.4.2 defusedxml==0.7.1 Deprecated==1.2.10 -Django==4.2.17 +Django==4.2.25 django-ajax-datatable==4.4.4 django-filter==22.1 django-mysql==4.7.1 From 1e3ced7e5da1090dea027fa3cb92f2a001a0dc78 Mon Sep 17 00:00:00 2001 From: Razat Agarwal Date: Fri, 3 Oct 2025 17:10:29 +0530 Subject: [PATCH 2/2] python image update --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 85de15df..c3f01fba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Based on an AMI ############################################################ # Set the base image to use to Ubuntu -FROM python:3.11-slim-buster AS base +FROM python:3.11-slim-bullseye AS base ENV DJANGO_SETTINGS_MODULE=EnigmaAutomation.settings RUN DEBIAN_FRONTEND=noninteractive \ @@ -14,7 +14,7 @@ RUN DEBIAN_FRONTEND=noninteractive \ && apt-get autoremove -y # Set env variables used in this Dockerfile (add a unique prefix, such as DEV) -RUN apt update && apt install -y netcat dnsutils libmariadbclient-dev +RUN apt update && apt install -y netcat dnsutils libmariadb-dev RUN mkdir -p /ebs/logs && touch /ebs/logs/engima.log && chmod 777 /ebs/logs/engima.log