Skip to content

Commit

Permalink
Merge pull request #536 from rstudio/mm-fix-docker-build
Browse files Browse the repository at this point in the history
Use requirements.txt in docker build
  • Loading branch information
aronatkins authored Jan 18, 2024
2 parents ce7d2c7 + fdecc3d commit 1f6f75d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ FROM ${BASE_IMAGE}

WORKDIR /rsconnect
COPY scripts/build-image build-image
COPY requirements.txt .
RUN bash build-image && rm -vf build-image
2 changes: 1 addition & 1 deletion scripts/build-image
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ set -o xtrace
exit 1
}
python -m pip install --upgrade pip
pip install '.[test]'
pip install -r requirements.txt

0 comments on commit 1f6f75d

Please sign in to comment.