Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed missing packages in final stage
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed May 23, 2023
1 parent 3dfb89a commit eb1eb50
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ FROM debian:stable-slim
COPY --from=build /opt/dist /

# Get the Intel runtime libraries
RUN apt-get update && apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates curl gpg-agent software-properties-common gnupg pkg-config procps && \
rm -rf /var/lib/apt/lists/*

RUN curl -fsSL https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB | apt-key add -
RUN deb [trusted=yes] https://apt.repos.intel.com/oneapi all main " > /etc/apt/sources.list.d/oneAPI.list
RUN apt-get -y update && apt-get upgrade -y
Expand Down

0 comments on commit eb1eb50

Please sign in to comment.