mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
99830c2bee
This is unused yet because it breaks some things
This reverts commit d016fa7453
.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/299>
12 lines
285 B
Docker
12 lines
285 B
Docker
FROM registry.fedoraproject.org/fedora:30
|
|
|
|
ENV RUSTUP_HOME=/usr/local/rustup \
|
|
CARGO_HOME=/usr/local/cargo \
|
|
PATH=/usr/local/cargo/bin:$PATH
|
|
|
|
ARG DEFAULT_BRANCH="master"
|
|
|
|
COPY prepare.sh cleanup.sh /root/
|
|
|
|
RUN /usr/bin/sh /root/prepare.sh && \
|
|
/usr/bin/sh /root/cleanup.sh
|