Fixing testing
This commit is contained in:
parent
5ab4e904da
commit
3f59062608
|
|
@ -1,14 +1,7 @@
|
|||
ARG SCHEME=chibi
|
||||
FROM docker.io/debian:trixie AS build
|
||||
RUN apt-get update && apt-get install -y \
|
||||
build-essential git ca-certificates wget libncurses-dev libx11-dev
|
||||
WORKDIR /build
|
||||
RUN wget https://github.com/cisco/ChezScheme/releases/download/v10.3.0/csv10.3.0.tar.gz && tar -xf csv10.3.0.tar.gz
|
||||
WORKDIR /build/csv10.3.0
|
||||
RUN ./configure --prefix=/root/local
|
||||
RUN make
|
||||
RUN make install
|
||||
RUN apt-get install -y guile-3.0
|
||||
build-essential git ca-certificates wget guile-3.0 chezscheme
|
||||
WORKDIR /build
|
||||
RUN wget https://gitlab.com/-/project/6808260/uploads/9d23bb6ec47dd2d7ee41802115cd7d80/akku-1.1.0.src.tar.xz && tar -xf akku-1.1.0.src.tar.xz
|
||||
WORKDIR /build/akku-1.1.0.src
|
||||
|
|
@ -28,6 +21,7 @@ RUN make PREFIX=/root/.local install
|
|||
|
||||
ARG SCHEME=chibi
|
||||
FROM docker.io/schemers/${SCHEME}:head
|
||||
RUN apt-get update && apt-get install -y guile-3.0 chezscheme
|
||||
COPY --from=build /root/.local /root/.local
|
||||
ENV PATH=/root/.local/bin:${PATH}
|
||||
ENV LD_LIBRARY_PATH=/root/.local/lib
|
||||
|
|
|
|||
Loading…
Reference in New Issue