Skip to content

Commit

Permalink
Merge pull request #43 from UBC-MDS/test_docker
Browse files Browse the repository at this point in the history
move pip install to dockerfile
  • Loading branch information
kuo4230 authored Nov 29, 2024
2 parents c01389a + 440f076 commit 5db742c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@ RUN mamba update --quiet --file /tmp/conda-linux-64.lock \
&& mamba clean --all -y -f \
&& fix-permissions "${CONDA_DIR}" \
&& fix-permissions "/home/${NB_USER}"


#RUN apt-get update && apt-get install -y libicu-dev
RUN pip install deepchecks==0.18.1
RUN pip install altair_ally==0.1.1

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
# run jupyter notebook inside jupyter
jupyter-notebook:
image: jk112358/diabetes_predictor_py
image: jk112358/diabetes_predictor_py:d5ee675
ports:
- "8888:8888"
volumes:
Expand Down
8 changes: 4 additions & 4 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- pandera=0.21.0
- conda-lock=2.5.7
- mamba=1.5.11

- pip:
- altair_ally==0.1.1
- deepchecks==0.18.1
- pip
# - pip:
# - altair_ally==0.1.1
# - deepchecks==0.18.1

0 comments on commit 5db742c

Please sign in to comment.