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