Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down