Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,4 @@ dmypy.json
# generated
*_spark/
*_pipeline/
.vscode/
8 changes: 4 additions & 4 deletions docker/python3.8.Dockerfile → Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM quay.io/pypa/manylinux2014_x86_64
FROM python:3.11.8

RUN useradd getml
USER getml
WORKDIR /home/getml

COPY --chown=getml:getml --chmod=0777 ./requirements/ /home/getml/requirements/
COPY --chown=getml:getml --chmod=0777 ./requirements.txt /home/getml/requirements.txt

ENV PATH="$PATH:/home/getml/.local/bin"
RUN /opt/python/cp38-cp38/bin/python3.8 \
RUN python3.11 \
-mpip install \
-r /home/getml/requirements/requirements.3.8.txt
-r /home/getml/requirements.txt

RUN mkdir /home/getml/.getML /home/getml/.getML/logs /home/getml/.getML/projects /home/getml/demo
RUN curl https://storage.googleapis.com/static.getml.com/download/1.4.0/getml-1.4.0-x64-linux.tar.gz | tar -C /home/getml/.getML -xvzf -
Expand Down
687 changes: 635 additions & 52 deletions README.md

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions binder/postBuild

This file was deleted.

1 change: 0 additions & 1 deletion binder/requirements.txt

This file was deleted.

22 changes: 22 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
services:
notebooks:
build:
context: ./
dockerfile: Dockerfile
networks:
- notebooks_network
ports:
- "1709:1709"
- "8888:8888"
userns_mode: keep-id
volumes:
- ./:/home/getml/demo
- notebooks_logs_volume:/home/getml/.getML/logs
- notebooks_projects_volume:/home/getml/.getML/projects

networks:
notebooks_network:

volumes:
notebooks_logs_volume:
notebooks_projects_volume:
43 changes: 0 additions & 43 deletions docker/README.md

This file was deleted.

37 changes: 0 additions & 37 deletions docker/docker-compose.yml

This file was deleted.

18 changes: 0 additions & 18 deletions docker/python3.11.Dockerfile

This file was deleted.

4 changes: 3 additions & 1 deletion requirements/base.txt → requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ pyspark==3.5.0
seaborn==0.13.2
ipywidgets==8.1.2
plotly==5.18.0
prophet==1.1.5
prophet==1.1.5
matplotlib==3.8.2
pystan==3.9.0
3 changes: 0 additions & 3 deletions requirements/requirements.3.11.txt

This file was deleted.

3 changes: 0 additions & 3 deletions requirements/requirements.3.8.txt

This file was deleted.

82 changes: 0 additions & 82 deletions welcome.md

This file was deleted.