compile-r7rs/Dockerfile.jenkins

10 lines
240 B
Docker

FROM schemers/chibi:head
RUN apt-get update && apt-get install -y \
build-essential ca-certifictaes git make docker.io
WORKDIR /builddir
COPY Makefile .
COPY compile-r7rs.scm .
COPY libs/ libs/
RUN make && make install
WORKDIR /workdir