Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan committed Oct 17, 2023
1 parent a5ae082 commit 2adb869
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration_tests/feature-store/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ RUN apt install -y postgresql-client

ADD ./server/model/requirements.txt $WORK_DIR/model-pipreqs.txt
ADD ./generator/requirements.txt $WORK_DIR/generator-pipreqs.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r $WORK_DIR/model-pipreqs.txt
RUN pip3 install -r $WORK_DIR/generator-pipreqs.txt
RUN pip3 install risingwave
RUN pip3 install --upgrade pip --break-system-packages
RUN pip3 install -r $WORK_DIR/model-pipreqs.txt --break-system-packages
RUN pip3 install -r $WORK_DIR/generator-pipreqs.txt --break-system-packages
RUN pip3 install risingwave --break-system-packages

RUN apt install -y lsof curl openssl libssl-dev pkg-config build-essential
RUN apt install -y cmake librdkafka-dev
Expand Down Expand Up @@ -56,4 +56,4 @@ RUN if [ "$BUILD_ARG" = "mfa" ]; then \

RUN chmod +x $WORK_DIR/run.sh && rm -rf $WORK_DIR/run-sh

CMD ["sh", "-c", "sleep 10 && ./run.sh"]
CMD ["sh", "-c", "sleep 10 && ./run.sh"]

0 comments on commit 2adb869

Please sign in to comment.