Skip to content

Commit

Permalink
fixed copy reference to core image
Browse files Browse the repository at this point in the history
  • Loading branch information
sreuland committed Jun 18, 2024
1 parent 715c3ae commit 9c2b9d0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile.core
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
ARG CORE_IMAGE=
ARG CORE_IMAGE_BIN_PATH=

FROM $CORE_IMAGE
FROM $CORE_IMAGE as stellar-core

FROM ubuntu
ARG CORE_IMAGE_BIN_PATH=

COPY $CORE_IMAGE_BIN_PATH /usr/local/bin/stellar-core
COPY --from=stellar-core ${CORE_IMAGE_BIN_PATH} /usr/local/bin/stellar-core



0 comments on commit 9c2b9d0

Please sign in to comment.