grm 0.7.5

Manage multiple git repositories. You configure the git repositories in a file, the program does the rest!
Documentation
FROM docker.io/debian:11.3

WORKDIR /app

ENV FLASK_APP=app.py

RUN apt-get update \
    && apt-get install -y \
        dumb-init \
        python3-flask \
        python3-jinja2 \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/*

EXPOSE 5000

COPY flask .

CMD ["/usr/bin/dumb-init", "--", "flask", "run", "--port", "5000", "--host", "0.0.0.0"]