FROM alpine:latest

ADD controller /controller

# When running as non root and building in an environment that `umask` masks out
# '+x' for others, it won't be possible to execute. Make sure all can execute,
# just in case
RUN chmod a+x /controller

ENTRYPOINT ["/controller"]
