8 lines
425 B
Docker
8 lines
425 B
Docker
FROM docker.io/ubuntu:20.04
|
|
|
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
|
RUN apt update && apt install -y -q git vim build-essential alsa-source alsa-tools libasound2-dev pkg-config libwayland-dev gcc-mingw-w64 zip
|
|
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
|
|
RUN /root/.cargo/bin/rustup target add x86_64-pc-windows-gnu
|
|
ENV PATH "$PATH:/root/.cargo/bin"
|