mirror of
https://github.com/vacp2p/10ksim.git
synced 2025-02-24 03:58:09 +00:00
13 lines
224 B
Docker
13 lines
224 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN apt update && \
|
|
apt install -y python3 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir /app
|
|
ADD dns_loop.py /app/dns_loop.py
|
|
RUN chmod +x /app/dns_loop.py
|
|
|
|
ENTRYPOINT ["/app/dns_loop.py"]
|
|
|