Files
abap-test-runner/Dockerfile
Jeremy Walker e9c89a146f Initial commit
2021-10-18 13:48:52 +01:00

9 lines
185 B
Docker

FROM alpine:3.10
# TODO: install packages required to run the tests
# RUN apk add --no-cache jq coreutils
WORKDIR /opt/test-runner
COPY . .
ENTRYPOINT ["/opt/test-runner/bin/run.sh"]