# sample dockerfile for testing call-docker-build.yaml
FROM alpine:3.19.0

RUN apk add --no-cache curl

WORKDIR /test

COPY . .

ENTRYPOINT ["curl"]

CMD ["--help"]