From 3813c3925357abca7f5009d69f07281e738d837f Mon Sep 17 00:00:00 2001 From: Howard Wu <40033067+Howard20181@users.noreply.github.com> Date: Fri, 13 Jan 2023 21:35:07 +0800 Subject: [PATCH] Fix Docker build (#570) --- scripts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index 3443b1d..66e54ce 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -30,7 +30,7 @@ RUN apk add --no-cache --virtual .build-tools git g++ build-base linux-headers c cd .. && \ git clone https://github.com/ToruNiina/toml11 --depth=1 && \ cd toml11 && \ - cmake . && \ + cmake -DCMAKE_CXX_STANDARD=11 . && \ make install -j $THREADS && \ cd .. && \ git clone https://github.com/tindy2013/subconverter --depth=1 && \