Skip to content

Commit

Permalink
add a fix and temp publish docker from branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nullpointer0x00 committed Oct 18, 2023
1 parent 22a19cf commit 8e9bdfa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- nullpointer0x00/1634-arm64-container-builds
tags:
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
- "v[0-9]+.[0-9]+.[0-9]+-rc*" # Push events to matching v*, i.e. v1.0-rc1, v20.15.10-rc5
Expand Down
7 changes: 5 additions & 2 deletions docker/blockchain/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ COPY Makefile sims.mk ./


# Build and install provenanced
ENV VERSION=$VERSION
RUN make VERSION=${VERSION} WITH_CLEVELDB=true install
ENV VERSION=${VERSION}
RUN UNAME_M=$(uname -m) && \
echo "UNAME_M: ${UNAME_M}" && \
if [ ${UNAME_M} != "x86_64" ]; then export ARCH=aarch64; fi && \
make VERSION=${VERSION} WITH_CLEVELDB=true install

###
FROM debian:bullseye-slim as run
Expand Down

0 comments on commit 8e9bdfa

Please sign in to comment.