Skip to content

Commit d4c62c7

Browse files
committed
Fix docker build
Signed-off-by: Oleksii Moskalenko <[email protected]>
1 parent 4f6b876 commit d4c62c7

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

infra/docker/jobservice/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ COPY protos protos
1010
# Install necessary tools for later steps
1111
RUN apt-get update && apt-get -y install make git wget
1212

13+
# Install CI requirements (only needed for running tests)
14+
RUN pip install -r sdk/python/requirements-ci.txt
15+
1316
# Install Python dependencies
1417
RUN make compile-protos-python
1518

infra/docker/jupyter/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ COPY Makefile Makefile
88
COPY protos protos
99
COPY tests tests
1010

11-
# Install Python dependencies
12-
RUN make compile-protos-python
13-
1411
# Install CI requirements (only needed for running tests)
1512
RUN pip install -r sdk/python/requirements-ci.txt
1613

14+
# Install Python dependencies
15+
RUN make compile-protos-python
16+
1717
# Install Feast SDK
1818
RUN git init .
1919
COPY README.md README.md

0 commit comments

Comments
 (0)