FROM amazon/aws-for-fluent-bit:2.28.4 RUN yum update -y && yum install -y unzip RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" RUN unzip awscliv2.zip RUN ./aws/install EXPOSE 2022 COPY docker-entrypoint.sh . RUN chmod +x docker-entrypoint.sh ENTRYPOINT ["./docker-entrypoint.sh"]