Skip to content

Commit

Permalink
Upgrade python version to 3.12 in example. Fix install issue with net…
Browse files Browse the repository at this point in the history
…cat in example
  • Loading branch information
marteinn committed Dec 30, 2023
1 parent 3240e61 commit 94825aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Add pyproject.toml
- Add ruff linter
- Upgrade python version to 3.12 in example
- Fix install issue with netcat in example

### Removed
- Drop support for django 4.0
Expand Down
4 changes: 2 additions & 2 deletions example_django_react_templatetags/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.8-slim
FROM python:3.12-slim
MAINTAINER Frojd

ENV PYTHONUNBUFFERED=1 \
REQUIREMENTS=requirements.txt

RUN apt-get update \
&& apt-get install -y netcat gcc libpq-dev \
&& apt-get install -y netcat-traditional gcc libpq-dev \
&& apt-get install -y binutils libproj-dev \
&& apt-get install -y gettext \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 94825aa

Please sign in to comment.