BWCE 2.8.3 now supports Amazon Linux 2023 as a base image OS
book
Article ID: KB0070552
calendar_today
Updated On:
Products
Versions
TIBCO BusinessWorks Container Edition
2.8.3
Description
We now support Amazon Linux 2023 (AL2023) as a Base OS for BWCE Base Docker Image creation with BWCE 2.8.3. Use the below mentioned Dockerfile content to create Base Image for Amazon Linux 2023.
Issue/Introduction
BWCE 2.8.3 now supports Amazon Linux 2023 as a base image OS
Resolution
Dockerfile content for Amazon Linux 2023:
FROM amazonlinux:2023 LABEL maintainer="TIBCO Software Inc." ADD . / RUN chmod 777 scripts/*.sh && yum update -y && yum install -y unzip openssh-clients.x86_64 net-tools.x86_64 findutils && yum clean all ENV LANG C.UTF-8 ENV LC_ALL C.UTF-8 ENTRYPOINT ["/scripts/start.sh"]