FROM alpine# Get kompose from github release pageRUN apk add --no-cache curlARGVERSION=1.32.0RUNARCH=$(uname -m | sed 's/armv7l/arm/g'| sed 's/aarch64/arm64/g'| sed 's/x86_64/amd64/g')&&\
curl -fsL \
"https://github.com/kubernetes/kompose/releases/download/v${VERSION}/kompose-linux-${ARCH}"\
-o /usr/bin/komposeRUN chmod +x /usr/bin/komposeCMD["/usr/bin/kompose","convert","-f","/in/compose.yaml","--out","/out"]