mirror of
https://github.com/masonr/yet-another-bench-script.git
synced 2025-11-09 08:30:08 +05:30
12 lines
268 B
Docker
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"]
|