Skip to content

Commit

Permalink
Merge pull request #106 from Computing-Collective/backend-updates
Browse files Browse the repository at this point in the history
Update backend dependencies
  • Loading branch information
ElioDiNino authored Oct 3, 2023
2 parents c1a65f9 + 22559a2 commit af36842
Show file tree
Hide file tree
Showing 3 changed files with 477 additions and 461 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/admin-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ jobs:
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python

- name: Install Backend Dependencies
run: pipenv sync --dev
run: |
pipenv lock --dev
pipenv sync --dev
- name: Download Machine Learning Model
uses: actions/download-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions admin-system/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD Pipfile.lock Pipfile /usr/src/
WORKDIR /usr/src

# Install pipenv packages
RUN /root/.local/bin/pipenv lock --dev
RUN /root/.local/bin/pipenv sync --dev

RUN /usr/src/.venv/bin/python -c "import requests; print(requests.__version__)"
Expand Down
Loading

0 comments on commit af36842

Please sign in to comment.