Merge pull request #942 from wazuh/904-docker-base-image-update-to-jammy

Docker base image update to Jammy
This commit is contained in:
Gonzalo Acuña
2023-08-15 13:51:04 -03:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
# Wazuh Docker Copyright (C) 2017, Wazuh Inc. (License GPLv2)
FROM ubuntu:focal AS builder
FROM ubuntu:jammy AS builder
ARG WAZUH_VERSION
ARG WAZUH_TAG_REVISION
@@ -42,7 +42,7 @@ RUN mkdir -p $INSTALL_DIR/data/wazuh/logs && chown -R 101:101 $INSTALL_DIR/data/
# Add entrypoint
# Add wazuh_app_config
################################################################################
FROM ubuntu:focal
FROM ubuntu:jammy
# Set environment variables
ENV USER="wazuh-dashboard" \

View File

@@ -1,5 +1,5 @@
# Wazuh Docker Copyright (C) 2017, Wazuh Inc. (License GPLv2)
FROM ubuntu:focal AS builder
FROM ubuntu:jammy AS builder
ARG WAZUH_VERSION
ARG WAZUH_TAG_REVISION
@@ -26,7 +26,7 @@ RUN bash config.sh
# Copy wazuh-indexer from stage 0
# Add entrypoint
################################################################################
FROM ubuntu:focal
FROM ubuntu:jammy
ENV USER="wazuh-indexer" \
GROUP="wazuh-indexer" \

View File

@@ -1,5 +1,5 @@
# Wazuh Docker Copyright (C) 2017, Wazuh Inc. (License GPLv2)
FROM ubuntu:focal
FROM ubuntu:jammy
RUN rm /bin/sh && ln -s /bin/bash /bin/sh