mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
docker: Add a dockerfile to export test result with allure
based on alpine
This commit is contained in:
parent
778359feb8
commit
8ad477eb0e
1 changed files with 9 additions and 0 deletions
9
docker/runtime-images/Dockerfile-allure
Normal file
9
docker/runtime-images/Dockerfile-allure
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
FROM anapsix/alpine-java:latest
|
||||||
|
|
||||||
|
# Get the allure test report framework
|
||||||
|
RUN export ALLURE_VERSION=2.7.0 && \
|
||||||
|
wget "https://bintray.com/qameta/generic/download_file?file_path=io%2Fqameta%2Fallure%2Fallure%2F2.7.0%2Fallure-${ALLURE_VERSION}.zip" -O allure.zip
|
||||||
|
unzip allure.zip && \
|
||||||
|
mv allure-${ALLURE_VERSION} /opt/allure && \
|
||||||
|
chmod +x /opt/allure/bin/allure && \
|
||||||
|
rm allure.zip
|
Loading…
Reference in a new issue