mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 22:21:13 +00:00
8a85aa6eba
The rust binaries (rustc) needs those variables to be defined to work properly.
10 lines
256 B
Docker
10 lines
256 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
|
|
|
|
COPY prepare.sh cleanup.sh /root/
|
|
|
|
RUN /usr/bin/sh /root/prepare.sh && \
|
|
/usr/bin/sh /root/cleanup.sh
|