Skip to content

Commit

Permalink
Fix image build
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed Jul 14, 2023
1 parent 7ee51b2 commit 3f84a37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ LABEL "com.oracle.coherence.version"="$version"
ENV COHERENCE_IMAGE=$coherence_image \
OPERATOR_IMAGE=$operator_image

COPY --chmod=0755 bin/linux/$target/* /files/
COPY bin/linux/$target/* /files/
COPY java/coherence-operator/target/docker/lib/*.jar /files/lib/
COPY java/coherence-operator/target/docker/logging/logging.properties /files/logging/logging.properties

Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1853,12 +1853,14 @@ $(BUILD_BIN_AMD64)/cohctl: export OS=Linux
$(BUILD_BIN_AMD64)/cohctl: export ARCH=x86_64
$(BUILD_BIN_AMD64)/cohctl:
./hack/install-cli.sh
chmod +x $(BUILD_BIN_AMD64)/cohctl

$(BUILD_BIN_ARM64)/cohctl: export COHCTL_HOME=$(BUILD_BIN_ARM64)
$(BUILD_BIN_ARM64)/cohctl: export OS=Linux
$(BUILD_BIN_ARM64)/cohctl: export ARCH=arm64
$(BUILD_BIN_ARM64)/cohctl:
./hack/install-cli.sh
chmod +x $(BUILD_BIN_ARM64)/cohctl

# ----------------------------------------------------------------------------------------------------------------------
# find or download gotestsum
Expand Down

0 comments on commit 3f84a37

Please sign in to comment.