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

update strelka base layers #615

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading