5 lines
88 B
Docker
5 lines
88 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache \
|
|
coreutils \
|
|
curl
|
|
ENTRYPOINT ["curl"] |