4 lines
168 B
Text
4 lines
168 B
Text
FROM debian:stable-slim
|
|
RUN apk add --no-cache curl iputils-ping dsniff
|
|
RUN echo 1 | tee /proc/sys/net/ipv4/ip_forward
|
|
CMD ["curl", "--insecure", "https://webserver/"]
|