FROM alpine:latest COPY hello.rb /usr/local/bin/hello RUN apk add ruby RUN chmod +x /usr/local/bin/hello CMD ["hello"]