amazon-kinesis-agent
amazon-kinesis-agent copied to clipboard
Unable to install and run kinesis agent in AL2023
I followed instruction here to install kinesis agent using public.ecr.aws/amazonlinux/amazonlinux:minimal as base image. Here is my Dockerfile:
`FROM public.ecr.aws/amazonlinux/amazonlinux:minimal
RUN dnf update
&& dnf --best install -y
shadow java-1.8.0-amazon-corretto telnet aws-kinesis-agent which findutils procps systemd
&& dnf clean all
SHELL ["/bin/bash", "-c"] RUN chkconfig aws-kinesis-agent on`
However, I don't see logs being produced at /var/log/aws-kinesis-agent and I don't see an agent running either in the container. Any idea why this doesn't work?