mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
8ad477eb0e
based on alpine
9 lines
No EOL
395 B
Text
9 lines
No EOL
395 B
Text
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 |