File tree 7 files changed +11
-5
lines changed
7 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ FROM ${BASE_CUDA_DEV_CONTAINER} as build
12
12
ARG CUDA_DOCKER_ARCH=all
13
13
14
14
RUN apt-get update && \
15
- apt-get install -y build-essential python3 python3-pip git libcurl4-openssl-dev
15
+ apt-get install -y build-essential python3 python3-pip git libcurl4-openssl-dev libgomp1
16
16
17
17
COPY requirements.txt requirements.txt
18
18
COPY requirements requirements
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04
3
3
FROM ubuntu:$UBUNTU_VERSION as build
4
4
5
5
RUN apt-get update && \
6
- apt-get install -y build-essential python3 python3-pip git libcurl4-openssl-dev
6
+ apt-get install -y build-essential python3 python3-pip git libcurl4-openssl-dev libgomp1
7
7
8
8
COPY requirements.txt requirements.txt
9
9
COPY requirements requirements
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ RUN make -j$(nproc)
27
27
28
28
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
29
29
30
+ RUN apt-get update && \
31
+ apt-get install -y libgomp1
32
+
30
33
COPY --from=build /app/main /main
31
34
32
35
ENTRYPOINT [ "/main" ]
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=jammy
3
3
FROM ubuntu:$UBUNTU_VERSION as build
4
4
5
5
# Install build tools
6
- RUN apt update && apt install -y git build-essential cmake wget
6
+ RUN apt update && apt install -y git build-essential cmake wget libgomp1
7
7
8
8
# Install Vulkan SDK
9
9
RUN wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | apt-key add - && \
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ RUN make -j$(nproc)
13
13
14
14
FROM ubuntu:$UBUNTU_VERSION as runtime
15
15
16
+ RUN apt-get update && \
17
+ apt-get install -y libgomp1
18
+
16
19
COPY --from=build /app/main /main
17
20
18
21
ENV LC_ALL=C.utf8
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ RUN make -j$(nproc)
30
30
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
31
31
32
32
RUN apt-get update && \
33
- apt-get install -y libcurl4-openssl-dev
33
+ apt-get install -y libcurl4-openssl-dev libgomp1
34
34
35
35
COPY --from=build /app/server /server
36
36
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ RUN make -j$(nproc)
16
16
FROM ubuntu:$UBUNTU_VERSION as runtime
17
17
18
18
RUN apt-get update && \
19
- apt-get install -y libcurl4-openssl-dev
19
+ apt-get install -y libcurl4-openssl-dev libgomp1
20
20
21
21
COPY --from=build /app/server /server
22
22
You can’t perform that action at this time.
0 commit comments