Skip to content

Commit

Permalink
Merge pull request #615 from Security-Onion-Solutions/reyesj2/strelka…
Browse files Browse the repository at this point in the history
…baseupd

update strelka base layers
  • Loading branch information
reyesj2 authored Dec 18, 2024
2 parents e793563 + 57531ab commit f7ed165
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions baseimages.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
alpine:3.20.2
alpine:3.21.0
apache/kafka:3.9.0
golang:1.23.3
golang:1.23.3-alpine
Expand Down
2 changes: 1 addition & 1 deletion so-strelka-backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ghcr.io/security-onion-solutions/ubuntu:22.04
LABEL maintainer "Security Onion Solutions, LLC"
LABEL maintainer="Security Onion Solutions, LLC"

ARG DEBIAN_FRONTEND=noninteractive

Expand Down
7 changes: 4 additions & 3 deletions so-strelka-filestream/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM ghcr.io/security-onion-solutions/golang:1.22.6-alpine AS build
LABEL maintainer "Security Onion Solutions, LLC"
FROM ghcr.io/security-onion-solutions/golang:1.23.3-alpine AS build
ARG STRELKA_RELEASE_VERSION=0.24.01.18

RUN CGO_ENABLED=0 go install github.com/target/strelka/src/go/cmd/strelka-filestream@$STRELKA_RELEASE_VERSION

FROM ghcr.io/security-onion-solutions/alpine:3.20.2
FROM ghcr.io/security-onion-solutions/alpine:3.21.0
LABEL maintainer="Security Onion Solutions, LLC"

COPY --from=build /go/bin/strelka-filestream /usr/local/bin/
RUN addgroup -g 939 strelka && \
adduser -u 939 -G strelka strelka --disabled-password \
Expand Down
6 changes: 3 additions & 3 deletions so-strelka-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM ghcr.io/security-onion-solutions/golang:1.22.6-alpine AS build
LABEL maintainer "Security Onion Solutions, LLC"
FROM ghcr.io/security-onion-solutions/golang:1.23.3-alpine AS build
ARG STRELKA_RELEASE_VERSION=0.24.01.18

RUN apk add openssl-dev \
Expand All @@ -10,7 +9,8 @@ RUN apk add openssl-dev \
librdkafka-dev && \
CGO_ENABLED=1 go install -tags musl github.com/target/strelka/src/go/cmd/strelka-frontend@$STRELKA_RELEASE_VERSION

FROM ghcr.io/security-onion-solutions/alpine:3.20.2
FROM ghcr.io/security-onion-solutions/alpine:3.21.0
LABEL maintainer="Security Onion Solutions, LLC"

COPY --from=build /go/bin/strelka-frontend /usr/local/bin/

Expand Down
7 changes: 4 additions & 3 deletions so-strelka-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM ghcr.io/security-onion-solutions/golang:1.22.6-alpine AS build
LABEL maintainer "Security Onion Solutions, LLC"
FROM ghcr.io/security-onion-solutions/golang:1.23.3-alpine AS build
ARG STRELKA_RELEASE_VERSION=0.24.01.18

RUN CGO_ENABLED=0 go install github.com/target/strelka/src/go/cmd/strelka-manager@$STRELKA_RELEASE_VERSION

FROM ghcr.io/security-onion-solutions/alpine:3.20.2
FROM ghcr.io/security-onion-solutions/alpine:3.21.0
LABEL maintainer="Security Onion Solutions, LLC"

COPY --from=build /go/bin/strelka-manager /usr/local/bin/
RUN addgroup -g 939 strelka && \
adduser -u 939 -G strelka strelka --disabled-password \
Expand Down

0 comments on commit f7ed165

Please sign in to comment.