13 lines
308 B
Docker
13 lines
308 B
Docker
FROM schemers/sagittarius
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential wget make cmake libgc-dev zlib1g-dev libffi-dev \
|
|
libssl-dev docker.io
|
|
WORKDIR /builddir
|
|
COPY Makefile .
|
|
COPY compile-r7rs.scm .
|
|
COPY snow/ snow/
|
|
COPY libs/ libs/
|
|
RUN ls -1
|
|
RUN make && make install
|
|
WORKDIR /workdir
|