Skip to content

Commit

Permalink
Merge branch 'release/5.2.241009'
Browse files Browse the repository at this point in the history
  • Loading branch information
renezoller committed Sep 23, 2024
2 parents bb9c2b7 + 5d4915b commit a2a28f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions inspec-tests/controls/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@

describe port(8000) do
it { should be_listening }
its('protocols') { should include 'tcp' }
its('protocols') { should satisfy { |protocols| protocols.include?('tcp') || protocols.include?('tcp6') } }
end

describe port(1088) do
it { should be_listening }
its('protocols') { should include 'tcp' }
its('protocols') { should satisfy { |protocols| protocols.include?('tcp') || protocols.include?('tcp6') } }
end

end
Expand Down
13 changes: 6 additions & 7 deletions jdk17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ARG IMAGE_CREATED="2024-09-13T14:00:00CEST"
ARG IMAGE_VERSION="5.2.240907"
ARG IMAGE_VERSION_SHORT="2024.9"
ARG IMAGE_VERSION_INSTALL="3.0.9"
ARG IMAGE_VERSION="5.2.241009"
ARG IMAGE_VERSION_SHORT="2024.10"
ARG IMAGE_VERSION_INSTALL="3.0.10"

ARG FS_DOWNLOAD_SERVER
ARG FS_DOWNLOAD_SERVER_USERNAME
ARG FS_DOWNLOAD_SERVER_PASSWORD
ARG FS_DOWNLOAD_SERVER_NAME="fs-isolated-server.jar"
ARG FS_DOWNLOAD_INSTALL_NAME="fs-install-3.0.8.tar.gz"
ARG FS_DOWNLOAD_INSTALL_NAME="fs-install-3.0.10.tar.gz"
ARG FS_BASE_DIRECTORY="/opt/firstspirit5"
ARG FS_INSTALL_DIRECTORY="/install/firstspirit5"
ARG FS_DEBUG_PORT="*:8585"
Expand All @@ -17,7 +17,6 @@ FROM docker.io/ubuntu:noble@sha256:8a37d68f4f73ebf3d4efafbcf66379bf3728902a80386
ARG IMAGE_VERSION
ARG IMAGE_VERSION_INSTALL
ARG IMAGE_VERSION_SHORT
ARG IMAGE_VERSION_HASH
ARG FS_DOWNLOAD_SERVER
ARG FS_DOWNLOAD_SERVER_USERNAME
ARG FS_DOWNLOAD_SERVER_PASSWORD
Expand All @@ -33,7 +32,7 @@ RUN apt-get update && apt-get install curl -y && \
curl -Sf -u "${FS_DOWNLOAD_SERVER_USERNAME}:${FS_DOWNLOAD_SERVER_PASSWORD}" -o "${FS_DOWNLOAD_INSTALL_NAME}" "${FS_DOWNLOAD_SERVER}/all-mvn-release-external-e-spirit-do/de/espirit/firstspirit/fs-install/${IMAGE_VERSION_INSTALL}/fs-install-${IMAGE_VERSION_INSTALL}.tar.gz" && \
tar zxvf /tmp/${FS_DOWNLOAD_INSTALL_NAME} -C /tmp/ && \
rm /tmp/${FS_DOWNLOAD_INSTALL_NAME} && \
echo "${IMAGE_VERSION}_${IMAGE_VERSION_HASH}" >> /tmp/firstspirit5/.version
echo "${IMAGE_VERSION}" >> /tmp/firstspirit5/.version


FROM docker.io/eclipse-temurin:17-noble@sha256:e65ed1ffbce778bc9d80460d49e7de1395cbb7cbd3a271d2021cc90040f98f80 AS jdk
Expand Down Expand Up @@ -72,7 +71,7 @@ LABEL org.opencontainers.image.base.name="eclipse-temurin:17-jdk" \
org.opencontainers.image.description="FirstSpirit in a Container" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.title="FirstSpirit" \
org.opencontainers.image.version=${IMAGE_VERSION}_${IMAGE_VERSION_HASH}
org.opencontainers.image.version=${IMAGE_VERSION}

HEALTHCHECK --interval="30s" \
--timeout="3s" \
Expand Down

0 comments on commit a2a28f0

Please sign in to comment.