mirror of
https://github.com/rancher/rke.git
synced 2025-09-17 23:49:06 +00:00
7 lines
114 B
Docker
7 lines
114 B
Docker
FROM alpine:3.4
|
|
|
|
RUN apk update && apk add bash
|
|
|
|
COPY entrypoint.sh /tmp/entrypoint.sh
|
|
CMD ["/tmp/entrypoint.sh"]
|