FROM debian:bullseye-slim

RUN apt-get update && apt install -y dumb-init redir && apt-get clean

COPY entrypoint.sh .

RUN chmod +x entrypoint.sh

ENTRYPOINT [ "./entrypoint.sh" ]
