File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
example_django_react_templatetags Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515### Fixed
1616- Add pyproject.toml
1717- Add ruff linter
18+ - Upgrade python version to 3.12 in example
19+ - Fix install issue with netcat in example
1820
1921### Removed
2022- Drop support for django 4.0
Original file line number Diff line number Diff line change 1- FROM python:3.8 -slim
1+ FROM python:3.12 -slim
22MAINTAINER Frojd
33
44ENV PYTHONUNBUFFERED=1 \
55 REQUIREMENTS=requirements.txt
66
77RUN apt-get update \
8- && apt-get install -y netcat gcc libpq-dev \
8+ && apt-get install -y netcat-traditional gcc libpq-dev \
99 && apt-get install -y binutils libproj-dev \
1010 && apt-get install -y gettext \
1111 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments