Skip to content

Commit 6c518ec

Browse files
committed
don't use build context, update pyzmq requirement
1 parent 76af8c2 commit 6c518ec

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ WORKDIR /app/
2323

2424
ARG NPDI_API_PORT=5000
2525

26-
RUN pip3 install --upgrade pip
26+
RUN --mount=type=cache,target=/root/.cache/pip,from=pip_cache pip3 install --upgrade pip
2727

2828
COPY requirements/ requirements/
2929

30-
RUN pip3 install -r requirements/dev_unix.txt
30+
RUN --mount=type=cache,target=/root/.cache/pip,from=pip_cache pip3 install -r requirements/dev_unix.txt
3131
COPY . .
3232

3333
ENV PORT=$NPDI_API_PORT

requirements/_core.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ ua-parser
3434
ujson
3535
neo4j
3636
neomodel==5.3.3
37+
pyzmq==26.2.1

requirements/dev_unix.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.12
2+
# This file is autogenerated by pip-compile with Python 3.13
33
# by the following command:
44
#
55
# pip-compile requirements/dev_unix.in
@@ -58,9 +58,7 @@ certifi==2024.2.2
5858
# httpx
5959
# requests
6060
cffi==1.16.0
61-
# via
62-
# argon2-cffi-bindings
63-
# bcrypt
61+
# via argon2-cffi-bindings
6462
charset-normalizer==3.3.2
6563
# via requests
6664
click==8.1.7
@@ -379,8 +377,9 @@ pyyaml==6.0.1
379377
# via
380378
# -r requirements/_core.in
381379
# jupyter-events
382-
pyzmq==25.1.2
380+
pyzmq==26.2.1
383381
# via
382+
# -r requirements/_core.in
384383
# ipykernel
385384
# jupyter-client
386385
# jupyter-console

0 commit comments

Comments
 (0)