Skip to content
Commits auf Quelle (3)
......@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.6.0](https://git.strausmann.de/bloonix-monitoring/bloonix_base/compare/release-2.5.0...release-2.6.0) (2023-11-28)
### ✨ Features
* **deps:** Add nano and htop as package ([357f0e1](https://git.strausmann.de/bloonix-monitoring/bloonix_base/commit/357f0e1246ad2bf0949972874574d3333a558cdd))
* **deps:** Add net-tools and lsof ([dab2f05](https://git.strausmann.de/bloonix-monitoring/bloonix_base/commit/dab2f05bbe8cd28ea1945770ebd79ef7152a4ca7))
## [2.5.0](https://git.strausmann.de/bloonix-monitoring/bloonix_base/compare/release-2.4.4...release-2.5.0) (2023-11-23)
......
......@@ -49,6 +49,10 @@ RUN apt-get -y update \
apt-transport-https \
openssl \
apt-utils \
nano \
htop \
net-tools \
lsof \
&& apt-get -y autoclean \
&& apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/* \
......