Skip to content

Commit 94825aa

Browse files
committed
Upgrade python version to 3.12 in example. Fix install issue with netcat in example
1 parent 3240e61 commit 94825aa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

example_django_react_templatetags/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM python:3.8-slim
1+
FROM python:3.12-slim
22
MAINTAINER Frojd
33

44
ENV PYTHONUNBUFFERED=1 \
55
REQUIREMENTS=requirements.txt
66

77
RUN 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/*

0 commit comments

Comments
 (0)