Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan committed Oct 17, 2023
1 parent 62fc5dc commit 1696e04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions integration_tests/feature-store/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
FROM rust:1.73 as feature-store-server
FROM ubuntu:20.04 AS feature-store-server
ARG BUILD_ARG

USER root

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --no-modify-path --default-toolchain none -y
ENV PATH /root/.cargo/bin/:$PATH

ENV WORK_DIR /opt/feature-store
RUN mkdir -p $WORK_DIR

Expand All @@ -27,7 +30,7 @@ RUN wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod
RUN dpkg -i packages-microsoft-prod.deb
RUN rm packages-microsoft-prod.deb
RUN apt-get update && apt-get install -y dotnet-sdk-6.0
RUN apt install -y liblttng-ust1
RUN apt install -y liblttng-ust0

RUN apt install -y protobuf-compiler
# `cargo build` included in ./build
Expand Down
1 change: 0 additions & 1 deletion integration_tests/feature-store/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ services:
- "./mfa-start.sql:/mfa-start.sql"
- "./mfa-mock.sql:/mfa-mock.sql"
feature-store:
image: rust:1.73
build:
context: .
target: feature-store-server
Expand Down

0 comments on commit 1696e04

Please sign in to comment.