Skip to content

Commit 86bdd8e

Browse files
committed
fix: add libgc-dev to Docker image for native compilation
Native builds inside the container failed at link time because -lgc couldn't find the Boehm GC library. Also bumped default PACT_VERSION to v0.23.2.
1 parent 855542c commit 86bdd8e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
FROM debian:bookworm-slim
22

3-
ARG PACT_VERSION=v0.18.0
3+
ARG PACT_VERSION=v0.23.2
44
ARG ZIG_VERSION=0.13.0
55

66
RUN apt-get update && apt-get install -y \
77
gcc \
88
libc6-dev \
9+
libgc-dev \
910
libsqlite3-dev \
1011
git \
1112
curl \

0 commit comments

Comments
 (0)