Skip to content

Commit

Permalink
Use Python 3.12 image, remove minizip
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Dec 4, 2023
1 parent f7699fe commit e3792b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed

- Updated Python version from `3.11` to `3.x` (latest)
- Updated Python version from `3.11` to `3.12`

### Deprecated
### Removed
Expand Down
5 changes: 4 additions & 1 deletion docker/tna-python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3-slim
FROM python:3.12-slim

# ==========================================
# Label this container image with a semantic
Expand Down Expand Up @@ -103,6 +103,9 @@ RUN set -eux; \
\
apt-get update; \
apt-get install -y --no-install-recommends curl=7.88.1-10+deb12u4 build-essential=12.9 libmagic-dev=1:5.44-3; \
# A temporary fix for a issue CVE-2023-45853
# https://access.redhat.com/security/cve/cve-2023-45853
apt-get remove -y minizip; \
apt-get clean; \
apt-get autoremove -y --purge; \
rm -rfv /var/lib/apt/lists/*; \
Expand Down

0 comments on commit e3792b5

Please sign in to comment.