Skip to content

Commit d06a0f0

Browse files
committed
misc
1 parent e545634 commit d06a0f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/linux.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WORKDIR /src
99
COPY . .
1010

1111
RUN cmake --preset release
12-
RUN cmake --build --parallel $(($(nproc) + 1)) --preset synth-release
12+
RUN cmake --build --parallel $(($(nproc) + 1)) --preset release
1313

1414
FROM scratch
1515
COPY --from=0 [ \

dist/web.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY . .
1313

1414
RUN cmake --version
1515
RUN cmake --preset emscripten
16-
RUN cmake --build --preset synth-emscripten -j $(($(nproc) + 1))
16+
RUN cmake --build --preset emscripten -j $(($(nproc) + 1))
1717

1818
FROM scratch
1919
COPY --from=0 [ \

0 commit comments

Comments
 (0)