Fixing tests

This commit is contained in:
retropikzel 2025-07-14 20:29:37 +03:00
parent 63522e8228
commit 0f0d42f0dc
2 changed files with 12 additions and 1 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM schemers/chibi:head
RUN apt-get update && apt-get install -y \
build-essential ca-certificates git make libffi-dev
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \
&& cd chibi-scheme && make -j 16 && make -j 16 install
WORKDIR /builddir
COPY Makefile Makefile
COPY compile-r7rs.scm .
COPY libs/ libs/
RUN make && make install
WORKDIR /workdir

View File

@ -1,6 +1,6 @@
FROM schemers/chibi:head
RUN apt-get update && apt-get install -y \
build-essential ca-certificates git make docker.io
build-essential ca-certificates git make docker.io libffi-dev
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \
&& cd chibi-scheme && make -j 16 && make -j 16 install
WORKDIR /builddir