-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Circle: update orb version, cause the previous one deprecated 2. Circle: explicitly set python 3.11 version to use for test and build 3. Dockerfile: update debian version to last one 4. Dockerfile: update UWSGI cause previous doesn't support python 3.11
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ARG PYTHON_VERSION | ||
FROM python:${PYTHON_VERSION}-slim-bullseye | ||
FROM python:${PYTHON_VERSION}-slim-bookworm | ||
LABEL maintainer="[email protected]" | ||
|
||
LABEL com.datadoghq.ad.logs='[{"source": "uwsgi", "service": "django"}]' | ||
|
@@ -9,9 +9,9 @@ ENV DEBIAN_FRONTEND noninteractive | |
|
||
ENV STATIC_ROOT /static | ||
|
||
ENV _UWSGI_VERSION 2.0.20 | ||
ENV _UWSGI_VERSION 2.0.23 | ||
|
||
RUN echo deb http://deb.debian.org/debian bullseye contrib non-free > /etc/apt/sources.list.d/debian-contrib.list \ | ||
RUN echo deb http://deb.debian.org/debian bookworm contrib non-free > /etc/apt/sources.list.d/debian-contrib.list \ | ||
&& apt update \ | ||
&& apt --no-install-recommends install -y gettext locales-all wget \ | ||
imagemagick tzdata wait-for-it build-essential \ | ||
|