#!/usr/bin/env scriptisto

# scriptisto-begin
# script_src: internal.sh
# build_cmd: docker build -t docker-script . && chmod +x ./external.sh
# target_bin: ./external.sh
# files: 
#  - path: external.sh
#    content: |
#     #!/bin/bash
#     docker run -i --rm docker-script
#  - path: Dockerfile
#    content: |
#     FROM alpine
#     COPY internal.sh /internal.sh
#     CMD sh /internal.sh
# scriptisto-end

echo -n "Hello, Docker! Alpine Linux version: " 
cat /etc/alpine-release
