Skip to content

Commit

Permalink
feat: Enable stork for search functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mkc19 committed Jun 10, 2023
1 parent 0571802 commit d030ca9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,18 @@ ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8

RUN apt-get update \
&& apt-get install --no-install-recommends -qy git curl bash
&& apt-get install --no-install-recommends -qy git curl bash \
build-essential pkg-config libssl-dev

RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
RUN apt-get install -y nodejs

# Install Rust to enable cargo package manager
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
# install Stork
RUN cargo install stork-search --locked

COPY entrypoint.sh /entrypoint.sh
RUN ["chmod", "+x", "/entrypoint.sh"]

Expand Down

0 comments on commit d030ca9

Please sign in to comment.