Skip to content

Commit

Permalink
Fix pip installs
Browse files Browse the repository at this point in the history
  • Loading branch information
nweires committed Feb 21, 2024
1 parent 54113c8 commit b058ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: |
cd buildstockbatch
python -m pip install --progress-bar off --upgrade pip
pip install .[dev] --progress-bar off
pip install .[dev,gcp] --progress-bar off
- name: Linting
run: |
cd buildstockbatch
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM --platform=linux/amd64 nrel/openstudio:$OS_VER as buildstockbatch
RUN sudo apt update && sudo apt install -y python3-pip
RUN sudo -H pip install --upgrade pip
COPY . /buildstock-batch/
RUN python3 -m pip install "/buildstock-batch"
RUN python3 -m pip install "/buildstock-batch[gcp]"

# Base plus custom gems
FROM buildstockbatch as buildstockbatch-custom-gems
Expand Down

0 comments on commit b058ba6

Please sign in to comment.