14 lines
379 B
Docker
14 lines
379 B
Docker
ARG SCHEME=chibi
|
|
FROM schemers/${SCHEME}:head
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
make \
|
|
libffi-dev \
|
|
ca-certificates \
|
|
git
|
|
ENV PATH=${PATH}:/usr/local-other/bin
|
|
ARG SCHEME=chibi
|
|
ENV COMPILE_R7RS=${SCHEME}
|
|
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \
|
|
&& cd chibi-scheme && make -j 16 && make -j 16 install
|