Block a user
peertube-collector (sha256:ea5ac73ddb6809e618b25aa92b855d206279bffd85a70d849aa39dc456cc9869)
Installation
docker pull gitea.kobim.cloud/kobim/peertube-collector@sha256:ea5ac73ddb6809e618b25aa92b855d206279bffd85a70d849aa39dc456cc9869
sha256:ea5ac73ddb6809e618b25aa92b855d206279bffd85a70d849aa39dc456cc9869
Image Layers
# debian.sh --arch 'arm64' out/ 'bookworm' '@1742169600' |
RUN /bin/sh -c apt-get update && apt-get install -y python3 python3-pip python3-venv curl # buildkit |
RUN /bin/sh -c python3 -m venv /app/venv # buildkit |
ENV PATH=/app/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
COPY requirements.txt /app/requirements.txt # buildkit |
RUN /bin/sh -c /app/venv/bin/pip install -r /app/requirements.txt # buildkit |
COPY main.py /app # buildkit |
COPY utils/ /app/utils # buildkit |
WORKDIR /app |
CMD ["/app/venv/bin/python" "main.py"] |
HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:9092/heartbeat || exit 1"] "5s" "10s" "5s" "0s" '\x05'} |