We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b273d9d commit 1e3ced7Copy full SHA for 1e3ced7
Dockerfile
@@ -3,7 +3,7 @@
3
# Based on an AMI
4
############################################################
5
# Set the base image to use to Ubuntu
6
-FROM python:3.11-slim-buster AS base
+FROM python:3.11-slim-bullseye AS base
7
8
ENV DJANGO_SETTINGS_MODULE=EnigmaAutomation.settings
9
RUN DEBIAN_FRONTEND=noninteractive \
@@ -14,7 +14,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
14
&& apt-get autoremove -y
15
16
# Set env variables used in this Dockerfile (add a unique prefix, such as DEV)
17
-RUN apt update && apt install -y netcat dnsutils libmariadbclient-dev
+RUN apt update && apt install -y netcat dnsutils libmariadb-dev
18
19
RUN mkdir -p /ebs/logs && touch /ebs/logs/engima.log && chmod 777 /ebs/logs/engima.log
20
0 commit comments