mirror of https://github.com/aliasrobotics/cai.git
Debug Dockerfile
This commit is contained in:
parent
559de8fcbc
commit
b20a6c6a78
|
|
@ -2,6 +2,9 @@ FROM kalilinux/kali-rolling
|
|||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# [FIX BAD MIRROR] Use a single, reliable Kali mirror to avoid flaky mirror redirects during apt operations
|
||||
RUN printf 'deb http://kali.download/kali kali-rolling main contrib non-free non-free-firmware\n' > /etc/apt/sources.list
|
||||
|
||||
# Fix Kali GPG Keys
|
||||
RUN apt-get update --allow-insecure-repositories && \
|
||||
apt-get install -y --no-install-recommends --allow-unauthenticated kali-archive-keyring && \
|
||||
|
|
@ -72,4 +75,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|||
CMD python3 -c "import cai; print('OK')" || exit 1
|
||||
|
||||
ENTRYPOINT ["/opt/cai/start.sh"]
|
||||
CMD []
|
||||
CMD []
|
||||
|
|
|
|||
Loading…
Reference in New Issue