-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# iamge | ||
FROM ubuntu:18.04 | ||
LABEL MAINTAINER="Mahmoud Khaled, [email protected]" | ||
|
||
# set time/language | ||
ENV TZ=Europe/Kiev | ||
ENV LANG C.UTF-8 | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
# update image | ||
RUN apt-get -qq update \ | ||
&& apt-get -qq install -y --no-install-recommends apt-utils \ | ||
&& apt-get -qq -y upgrade | ||
|
||
# install required libs/tools | ||
RUN apt-get -qq install -y wget git unzip build-essential libcpprest-dev opencl-c-headers opencl-clhpp-headers ocl-icd-opencl-dev clinfo oclgrind cmake | ||
|
||
# install pFaces (1.1.1 demo) | ||
RUN mkdir pfaces \ | ||
&& cd pfaces \ | ||
&& wget https://github.com/parallall/pFaces/releases/download/Release_1.1.1d/pFaces-1.1.1-Ubuntu18.04.zip \ | ||
&& unzip pFaces-1.1.1-Ubuntu18.04.zip | ||
RUN cd /pfaces && sh install.sh |