Skip to content

Commit

Permalink
add requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Jul 24, 2024
1 parent 64d71d0 commit 28ee19f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM python:3.11
RUN python -mvenv /venv
ENV PATH=/venv/bin:$PATH

# don't use numpy 2.0 yet, pin to latest 1.x version
RUN pip install numpy=1.26.4 p4p nose2
COPY requirements.txt .
RUN pip install -r requirements.txt

ENTRYPOINT [ "bash" ]
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@


# don't use numpy 2.0 yet, pin to latest 1.x version
numpy==1.26.4
p4p==4.1.12
nose2==0.15.1

0 comments on commit 28ee19f

Please sign in to comment.