Fixing testing

This commit is contained in:
retropikzel 2026-01-25 10:32:56 +02:00
parent 3f59062608
commit 51ed9e02e4
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +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 guile-3.0 chezscheme
build-essential git ca-certificates wget guile-3.0 libcurl4-gnutls-dev 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
@ -21,7 +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
RUN apt-get update && apt-get install -y guile-3.0 libcurl3t64-gnutls libcurl4-gnutls-dev chezscheme
COPY --from=build /root/.local /root/.local
ENV PATH=/root/.local/bin:${PATH}
ENV LD_LIBRARY_PATH=/root/.local/lib