FROM alpine:latest RUN apk add python3 WORKDIR /waf COPY ./waf.py . RUN chmod +x ./waf.py CMD ["./waf.py"]