9 lines
98 B
Docker
9 lines
98 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
curl \
|
|
helix
|
|
|
|
CMD [ "/bin/bash" ]
|