7 lines
202 B
Text
7 lines
202 B
Text
FROM alpine:latest
|
|
RUN apk add --no-cache curl iputils-ping dsniff
|
|
RUN echo 1 | tee /proc/sys/net/ipv4/ip_forward
|
|
|
|
|
|
#curl --insecure https://localhost/
|
|
CMD ["curl", "--insecure", "https://webserver/"]
|