Skip to content

Commit

Permalink
Fix docker build
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
  • Loading branch information
pyalex committed Mar 31, 2021
1 parent 4f6b876 commit d4c62c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions infra/docker/jobservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ COPY protos protos
# Install necessary tools for later steps
RUN apt-get update && apt-get -y install make git wget

# Install CI requirements (only needed for running tests)
RUN pip install -r sdk/python/requirements-ci.txt

# Install Python dependencies
RUN make compile-protos-python

Expand Down
6 changes: 3 additions & 3 deletions infra/docker/jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ COPY Makefile Makefile
COPY protos protos
COPY tests tests

# Install Python dependencies
RUN make compile-protos-python

# Install CI requirements (only needed for running tests)
RUN pip install -r sdk/python/requirements-ci.txt

# Install Python dependencies
RUN make compile-protos-python

# Install Feast SDK
RUN git init .
COPY README.md README.md
Expand Down

0 comments on commit d4c62c7

Please sign in to comment.