forked from BOINC/boinc-client-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.intel-legacy
21 lines (18 loc) · 958 Bytes
/
Dockerfile.intel-legacy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
###################################################################################
# Starting in Q1’2018, Beignet has been deprecated in favor of NEO OpenCL driver. #
# Beginet still remains the recommended driver for #
# - Sandybridge - 2nd Geneneration #
# - Ivybridge - 3rd Geneneration #
# - Haswell - 4th Geneneration. #
###################################################################################
FROM boinc/client:baseimage-ubuntu
LABEL maintainer="BOINC" \
description="Legacy Intel GPU-savvy BOINC client."
# Install
RUN apt-get update && apt-get install -y --no-install-recommends \
# Generic OpenCL ICD Loader
ocl-icd-libopencl1 \
# OpenCL Driver for legacy HW platforms.
beignet-opencl-icd && \
# Cleaning up
rm -rf /var/lib/apt/lists/*