Init
This commit is contained in:
commit
70fde51c0f
2 changed files with 27 additions and 0 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
ARG RUST_VERSION
|
||||
FROM docker.io/clux/muslrust:${RUST_VERSION}
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
wget \
|
||||
software-properties-common \
|
||||
clang && \
|
||||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/*
|
||||
WORKDIR /tmp
|
||||
ARG MOLD_VERSION
|
||||
RUN wget -qO- https://github.com/rui314/mold/releases/download/v${MOLD_VERSION}/mold-${MOLD_VERSION}-x86_64-linux.tar.gz | tar xzf - \
|
||||
&& cp -RT mold-${MOLD_VERSION}-x86_64-linux /usr/local \
|
||||
&& rm -rf mold-${MOLD_VERSION}-x86_64-linux
|
||||
RUN cargo install cargo-chef --version 0.1.62 --locked
|
||||
WORKDIR /env
|
||||
RUN echo MOLD=$(which mold) > .env
|
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
.PHONY: build
|
||||
|
||||
RUST_VERSION = 1.74.0
|
||||
MOLD_VERSION = 2.4.0
|
||||
|
||||
build:
|
||||
docker build . \
|
||||
-t git.dergrimm.net/dergrimm/muslrust:$(RUST_VERSION) \
|
||||
--build-arg="RUST_VERSION=$(RUST_VERSION)" \
|
||||
--build-arg="MOLD_VERSION=$(MOLD_VERSION)"
|
Loading…
Reference in a new issue