From 9fc594e36a9a1e2227fe668d3b284b23a18d7dc5 Mon Sep 17 00:00:00 2001 From: Matthias Niedermaier Date: Sat, 25 Jan 2025 22:07:47 +0100 Subject: [PATCH] Added libstdc++6 as recommended in: https://openplc.discussion.community/post/openplc-v-3-stoptimizer-and-iec2c-problem-12604935 --- software/OpenPLC/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/software/OpenPLC/Dockerfile b/software/OpenPLC/Dockerfile index 41386d2..503cdf1 100644 --- a/software/OpenPLC/Dockerfile +++ b/software/OpenPLC/Dockerfile @@ -1,5 +1,9 @@ FROM debian:12-slim +RUN apt-get update && apt-get install -y \ + libstdc++6 \ + && rm -rf /var/lib/apt/lists/* + COPY ./OpenPLC_v3/ /CybICS/OpenPLC_v3/ WORKDIR /CybICS/OpenPLC_v3/ RUN export GNUMAKEFLAGS=-j$(nproc --all) \