ARG BASE_IMAGE="scratch"

FROM $BASE_IMAGE
ARG TARGETOS
ARG TARGETARCH

# Copy the binary - use wildcard to handle .exe extension for Windows
COPY ./out/bin/step-runner-$TARGETOS-$TARGETARCH* /step-runner
