Skip to content

Commit

Permalink
Use precompiled pip
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt authored Mar 25, 2024
1 parent 2b1e06f commit b5d4c5d
Show file tree
Hide file tree
Showing 3 changed files with 764 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
!*.yaml
!*.yml
!*.in
!*.txt
!**.github/workflows
!*.gitignore
!*.dockerignore
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ RUN pip install pip-tools

# Pip installation
RUN mkdir -p /conf
COPY requirements.in /conf/
RUN pip-compile --extra-index-url=https://packages.dea.ga.gov.au/ --output-file=/conf/requirements.txt /conf/requirements.in
# COPY requirements.in /conf/
# RUN pip-compile --extra-index-url=https://packages.dea.ga.gov.au/ --output-file=/conf/requirements.txt /conf/requirements.in
COPY requirements.txt /conf/
RUN pip install -r /conf/requirements.txt \
&& pip install --no-cache-dir awscli

Expand Down
Loading

0 comments on commit b5d4c5d

Please sign in to comment.