YABS/Dockerfile
2025-08-05 11:54:44 +02:00

12 lines
268 B
Docker

FROM debian:stable-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates curl wget iputils-ping && \
rm -rf /var/lib/apt/lists/*
WORKDIR /opt/yabs
COPY bin ./bin
COPY yabs.sh .
RUN chmod +x yabs.sh
ENTRYPOINT ["./yabs.sh"]