mirror of
https://github.com/rancher/rke.git
synced 2025-10-21 03:02:41 +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"]
|