mirror of
https://github.com/wayneconnolly/drone-rancher-stack-v1.git
synced 2026-06-04 18:23:54 +08:00
6 lines
128 B
Docker
6 lines
128 B
Docker
FROM alpine
|
|
ADD script.sh /bin/
|
|
RUN chmod +x /bin/script.sh
|
|
RUN apk -Uuv add curl tar ca-certificates
|
|
ENTRYPOINT /bin/script.sh
|