aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/installers/Dockerfile.qat-driver-installer
blob: 7d885a59ac4411adfe1e6e4aa4916e3573abd12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ubuntu:18.04

RUN apt-get update && \
    apt-get install -y \
        bc \
        build-essential \
        curl \
        kmod \
        libelf-dev \
        libssl-dev \
        libudev-dev \
        pciutils \
        pkg-config \
        && \
    rm -rf /var/lib/apt/lists/*

COPY _common.sh /
COPY _qat-driver-installer.sh /
COPY entrypoint-qat-driver-installer.sh /entrypoint.sh

CMD /entrypoint.sh