Dockerfile164 B
View on GitHubFROM alpine:latest
RUN printf '%s\n' '#!/bin/sh' 'echo "hello from the built Atmos example image"' > /usr/local/bin/example \
&& chmod +x /usr/local/bin/example
FROM alpine:latest
RUN printf '%s\n' '#!/bin/sh' 'echo "hello from the built Atmos example image"' > /usr/local/bin/example \
&& chmod +x /usr/local/bin/example