Fixing tests

This commit is contained in:
retropikzel 2025-07-14 20:23:50 +03:00
parent aa9a14a054
commit 27d058bdb9
2 changed files with 3 additions and 6 deletions

View File

@ -1,12 +1,9 @@
FROM schemers/chibi
FROM schemers/chibi:head
RUN apt-get update && apt-get install -y \
build-essential wget make cmake libgc-dev zlib1g-dev libffi-dev \
libssl-dev docker.io
build-essential ca-certifictaes git make 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

View File

@ -1,5 +1,5 @@
ARG SCHEME=chibi
FROM schemers/${SCHEME}
FROM schemers/${SCHEME}:head
RUN apt-get update && apt-get install -y \
build-essential \
make \