Skip to content

Commit

Permalink
dockerfile: fix copy path
Browse files Browse the repository at this point in the history
  • Loading branch information
colindickson committed Oct 24, 2023
1 parent ab33c6c commit eee8f1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ on:
push:
tags:
- "*-fire"
workflow_dispatch:
inputs:
core_version:
description: 'version of nearcore (optional: if not provided, will be inferred from tag)'
required: false
type: string

env:
REGISTRY: ghcr.io
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ COPY . .
RUN CARGO_TARGET_DIR=/tmp/target make release

RUN ls -la /tmp/target
RUN ls -la /tmp/target/release

FROM ubuntu:20.04

Expand All @@ -57,7 +58,7 @@ RUN mkdir /tmp/s5cmd && \



COPY --from=build /tmp/target/near-firehose-indexer /app/neard
COPY --from=build /tmp/target/release/near-firehose-indexer /app/neard
RUN chmod +x /app/near-firehose-indexer

ENV PATH "$PATH:/app"

0 comments on commit eee8f1f

Please sign in to comment.