blob: d9d3d9505b19b7d8095e2028aebd1b6b5fb490c9 (
plain)
1
2
3
4
5
6
7
|
FROM python:3.9.7-alpine
ARG DEFAULT_BRANCH="master"
RUN pip install requests
RUN apk add git
RUN cd / && git clone -b ${DEFAULT_BRANCH:=master} https://gitlab.freedesktop.org/gstreamer/gst-ci.git
|