Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: remove indexer-service, indexer-native #1055

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 0 additions & 56 deletions .github/workflows/indexer-service-image.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/publish-native-binaries.yml

This file was deleted.

9 changes: 1 addition & 8 deletions Dockerfile.indexer-agent
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ ENV NODE_ENV production

RUN apt-get update && apt-get install -y python3 build-essential git curl

# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh && sh /tmp/rustup.sh -y
ENV PATH="/root/.cargo/bin:$PATH"

WORKDIR /opt/indexer

# Copy root files
Expand Down Expand Up @@ -41,10 +37,6 @@ ENV NODE_OPTIONS="--max-old-space-size=4096"

RUN apt-get update && apt-get install -y python3 build-essential git curl

# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh && sh /tmp/rustup.sh -y
ENV PATH="/root/.cargo/bin:$PATH"

WORKDIR /opt/indexer

# Copy root files
Expand All @@ -53,6 +45,7 @@ COPY yarn.lock .
COPY tsconfig.json .
COPY lerna.json .


# Copy build output
COPY --from=build /opt/indexer/packages/indexer-common/package.json /opt/indexer/packages/indexer-common/package.json
COPY --from=build /opt/indexer/packages/indexer-common/dist /opt/indexer/packages/indexer-common/dist
Expand Down
6 changes: 0 additions & 6 deletions Dockerfile.indexer-cli
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ ENV NODE_ENV production

RUN apt-get update && apt-get install -y python3 build-essential git curl

# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh && sh /tmp/rustup.sh -y
ENV PATH="/root/.cargo/bin:$PATH"

WORKDIR /opt/indexer

# Copy root files
Expand All @@ -21,7 +17,6 @@ COPY lerna.json .

# Copy shared and package files
COPY packages/indexer-common/ ./packages/indexer-common
COPY packages/indexer-native/ ./packages/indexer-native
COPY packages/indexer-cli/ ./packages/indexer-cli

# Install dependencies; include dev dependencies
Expand Down Expand Up @@ -56,7 +51,6 @@ COPY --from=build /opt/indexer/packages/indexer-cli/dist /opt/indexer/packages/i
COPY --from=build /opt/indexer/packages/indexer-cli/bin /opt/indexer/packages/indexer-cli/bin



# Install dependencies; exclude dev dependencies
RUN yarn --frozen-lockfile --non-interactive --production=true
RUN ln -s /opt/indexer/packages/indexer-cli/bin/graph-indexer /usr/bin/graph
Expand Down
67 changes: 0 additions & 67 deletions Dockerfile.indexer-service

This file was deleted.

Loading
Loading