Skip to content

Commit 7759099

Browse files
authored
Make Docker build check requirements (#179)
* add unit-requirements.txt * remove unit-requirements
1 parent bf267ba commit 7759099

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ RUN python3 -m venv /venv && \
88
/venv/bin/pip install -U pip setuptools
99

1010
COPY requirements.txt /app/requirements.txt
11-
RUN /venv/bin/pip install --no-deps --requirement /app/requirements.txt
11+
RUN /venv/bin/pip install --requirement /app/requirements.txt
1212

1313
COPY . /app
14-
RUN /venv/bin/pip install --no-deps /app
14+
RUN /venv/bin/pip install /app
1515

1616

1717
FROM ubuntu:jammy

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ easykube==0.5.0
1010
exceptiongroup==1.2.2
1111
frozenlist==1.5.0
1212
h11==0.16.0
13-
httpcore==1.0.7
13+
httpcore==1.0.9
1414
httpx==0.28.1
1515
idna==3.10
1616
iso8601==2.1.0

0 commit comments

Comments
 (0)