-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitpod.Dockerfile
24 lines (17 loc) · 1.15 KB
/
.gitpod.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM gitpod/workspace-full
RUN sudo apt-get -y update
# Install the latest hpccsystems clienttools and required ML bundles.
WORKDIR /tmp
RUN wget https://github.com/hpcc-systems/HPCC-Platform/releases/download/community_9.2.10-1/hpccsystems-platform-community_9.2.10-1focal_amd64_withsymbols.deb
RUN sudo apt-get install -y --fix-missing ./hpccsystems-platform-community_9.2.10-1focal_amd64_withsymbols.deb
RUN rm -f hpccsystems-platform-community_9.2.10-1focal_amd64_withsymbols.deb
COPY ./environment/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
RUN ecl bundle install https://github.com/hpcc-systems/Visualizer.git