Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.3.290 #518

Merged
merged 10 commits into from
Feb 29, 2024
4 changes: 2 additions & 2 deletions so-curator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

FROM alpine:3
FROM alpine:3.18.4

LABEL maintainer "Security Onion Solutions, LLC"

Expand All @@ -26,7 +26,7 @@ ENV LC_ALL=en_US.UTF-8
USER root

RUN apk --no-cache add python3 py-setuptools py-pip gcc libffi py-cffi python3-dev libffi-dev py-openssl musl-dev linux-headers openssl-dev && \
pip install elasticsearch-curator && \
pip install urllib3==2.0.7 certifi==2023.7.22 elastic-transport==8.10.0 voluptuous==0.13.1 elasticsearch-curator==8.0.8 && \
apk del gcc python3-dev libffi-dev musl-dev linux-headers openssl-dev

RUN addgroup -g ${GID} ${USERNAME} && \
Expand Down
3 changes: 2 additions & 1 deletion so-fleet-launcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ RUN apt-get install -y --no-install-recommends \
rpm \
git

RUN gem install public_suffix -v 4.0.7 && \
RUN gem install dotenv -v 2.8.1 && \
gem install public_suffix -v 4.0.7 && \
gem install --no-ri --no-rdoc fpm && \
apt-get -f -y --auto-remove remove build-essential autoconf libtool && \
apt-get clean && \
Expand Down
2 changes: 1 addition & 1 deletion so-suricata/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ FROM ghcr.io/security-onion-solutions/centos:7 as builder
RUN yum -y install epel-release
RUN yum -y install jansson-devel libpcap-devel python3 libpcap-devel openssl-devel zlib-devel jemalloc-devel python3-devel kernel-devel kernel-headers libjansson libgeoip liblua5.1 curl wget make gcc pkg-config libhiredis libevent pcre-devel libpcre libmagic zlib libyaml rustc cargo libyaml-devel libcap-ng-devel file-devel nss-devel nspr-devel python3-yaml luajit-devel luajit

ENV SURIVERSION=6.0.15
ENV SURIVERSION=6.0.16
RUN mkdir /suricata

WORKDIR /suricata
Expand Down
2 changes: 1 addition & 1 deletion so-zeek/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN dnf -y install dnf-plugins-core && dnf config-manager --set-enabled powertoo
pip3 install GitPython semantic-version requests && \
dnf -y erase epel-release && dnf clean all && rm -rf /var/cache/dnf

ENV ZEEKVER=6.0.2
ENV ZEEKVER=6.0.3
ARG BUILD_TYPE=Release

RUN mkdir /zeekbuild
Expand Down
Loading