4 lines
97 B
Text
4 lines
97 B
Text
|
FROM alpine:3.17.2
|
||
|
RUN apk add --no-cache curl
|
||
|
ADD script.sh /script.sh
|
||
|
ENTRYPOINT ["/script.sh"]
|