Skip to content

Commit

Permalink
Remove pickle and arrange Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Piloxita committed Dec 13, 2024
1 parent 5ef6f86 commit 5334a1a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG_LONG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
IMPROVEMENTS
1. Fix the action workflow that contains a typo by changing the name of "Docker-compose.yml" to "docker-compose.yml". The message on the commit is "Rename Docker-compose.yml to docker-compose.yml"
2. Suppress warnings. Commit message: "Add docstrings and suppress warnings in script 4"
1. Fix the action workflow that contains a typo by changing the name of "Docker-compose.yml" to "docker-compose.yml". Commit message: "Rename Docker-compose.yml to docker-compose.yml"
2. Suppress warnings. Commit message: "Add docstrings and suppress warnings in script 4"
3. Remove pickle out of environment.yml and arrange Dockerfile Run commands. Commit message: "Remove pickle and arrange Dockerfile"
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ FROM quay.io/jupyter/minimal-notebook:afe30f0c9ad8

COPY conda-linux-64.lock /tmp/conda-linux-64.lock

RUN mamba update --quiet --file /tmp/conda-linux-64.lock
RUN mamba clean --all -y -f
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 pip install deepchecks==0.18.1 seaborn==0.13.2 altair-ally==0.1.1
RUN fix-permissions "${CONDA_DIR}"
RUN fix-permissions "/home/${NB_USER}"

RUN echo "Done Building!!"
RUN echo "Done Building Container!!"
3 changes: 1 addition & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ dependencies:
- click=8.1.7
- tabulate=0.9.0
- quarto=1.5.57
- pickle
- pip:
- deepchecks==0.18.1
- altair-ally==0.1.1
- seaborn==0.13.2
- seaborn==0.13.2

0 comments on commit 5334a1a

Please sign in to comment.