4 lines
146 B
Text
4 lines
146 B
Text
FROM alpine:latest
|
|
RUN apk add --no-cache curl iputils-ping
|
|
#curl --insecure https://localhost/
|
|
CMD ["curl", "--insecure", "https://webserver/"]
|