9 lines
185 B
Docker
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"]
|