Skip to content

Commit

Permalink
moved pkg install completely to build process
Browse files Browse the repository at this point in the history
  • Loading branch information
turnmanh committed May 27, 2024
1 parent b2ee395 commit 075137e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ COPY . ${HOME}
WORKDIR ${HOME}

RUN pip install -r requirements.txt && \
pip install -e . && \
pip install click cryptography

RUN bash ./build_scripts/install_presentation_requirements.sh
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
// open the default port for jupyter notebook
"forwardPorts": [8888],

"postCreateCommand": "pip install -e . && python scripts/download_data.py"
"postCreateCommand": "python scripts/download_data.py"

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
Expand Down

0 comments on commit 075137e

Please sign in to comment.