-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.gitpod.Dockerfile
20 lines (16 loc) · 1.02 KB
/
.gitpod.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM gitpod/workspace-full
RUN sudo apt-get -y update
# Install the latest hpccsystems clienttools and required ML bundles.
WORKDIR /tmp
RUN wget https://cdn.hpccsystems.com/releases/CE-Candidate-8.4.12/bin/platform/hpccsystems-platform-community_8.4.12-1focal_amd64.deb
RUN sudo apt-get install -y --fix-missing ./hpccsystems-platform-community_8.4.12-1focal_amd64.deb
RUN rm -f hpccsystems-platform-community_8.4.12-1focal_amd64.deb
COPY ./environment/*.xml /etc/HPCCSystems
RUN ecl bundle install https://github.com/hpcc-systems/ML_Core.git
RUN ecl bundle install https://github.com/hpcc-systems/PBblas.git
RUN ecl bundle install https://github.com/hpcc-systems/dbscan.git
RUN ecl bundle install https://github.com/hpcc-systems/KMeans.git
RUN ecl bundle install https://github.com/hpcc-systems/LinearRegression.git
RUN ecl bundle install https://github.com/hpcc-systems/LogisticRegression.git
RUN ecl bundle install https://github.com/hpcc-systems/LearningTrees.git
RUN ecl bundle install https://github.com/hpcc-systems/DataPatterns.git