add openmp lib to dockerfiles

This commit is contained in:
slaren 2024-06-06 00:05:25 +02:00
parent 7672adeec7
commit 3d2e79da7f
7 changed files with 11 additions and 5 deletions

View file

@ -27,6 +27,9 @@ RUN make -j$(nproc)
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
RUN apt-get update && \
apt-get install -y libgomp1
COPY --from=build /app/main /main
ENTRYPOINT [ "/main" ]