Files
stationeers_lang/Dockerfile.build
2025-12-05 03:08:42 -07:00

23 lines
702 B
Docker

FROM rust:latest
RUN apt-get update && apt-get install -y \
mingw-w64 \
wget \
apt-transport-https \
&& rm -rf /var/lib/apt/lists/*
RUN wget --progress=dot:giga https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh \
&& chmod +x ./dotnet-install.sh \
&& ./dotnet-install.sh --channel 8.0 --install-dir /usr/share/dotnet \
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
RUN rustup toolchain install stable \
&& rustup component add --toolchain stable rustfmt clippy \
&& rustup target add --toolchain stable x86_64-pc-windows-gnu \
&& rustup target add --toolchain stable x86_64-unknown-linux-gnu
WORKDIR /app
# The command will be provided at runtime
CMD ["./build.sh"]