Skip to content

Commit

Permalink
Fixed Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
maoueh committed Mar 21, 2024
1 parent bb3b9de commit 6ae2b96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
${{ runner.os }}-go-
- name: Build Binary
run: go build -v -o ./graphload ./cmd/graphload
run: go build -v -o ./substreams-sink-graph-load ./cmd/substreams-sink-graph-load

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
ca-certificates libssl1.1 vim strace lsof curl jq && \
rm -rf /var/cache/apt /var/lib/apt/lists/*

ADD /graphload /app/graphload
ADD /substreams-sink-graph-load /app/substreams-sink-graph-load

ENV PATH "$PATH:/app"

ENTRYPOINT ["/app/graphload"]
ENTRYPOINT ["/app/substreams-sink-graph-load"]

0 comments on commit 6ae2b96

Please sign in to comment.