Skip to content

Commit

Permalink
Updates to v0.45.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
tjayrush committed Dec 17, 2022
1 parent edcde57 commit 427f82f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ RUN apk --no-cache add g++ gcc make cmake git nano libcurl python3 python3-dev \

WORKDIR /root

#ARG UPSTREAM_VER=v0.44.0-beta
ARG UPSTREAM_VER=feature/docker-version
# ARG UPSTREAM_VER=feature/docker-version
# ADD https://api.github.com/repos/TrueBlocks/trueblocks-core/git/refs/heads/$UPSTREAM_VER version.json

ADD https://api.github.com/repos/TrueBlocks/trueblocks-core/git/refs/heads/$UPSTREAM_VER version.json
ARG UPSTREAM_VER=v0.45.0-beta
RUN git clone -b "${UPSTREAM_VER}" --single-branch --progress --depth 1 \
https://github.com/TrueBlocks/trueblocks-core.git && \
cd trueblocks-core && \
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: TrueBlocksCore

services:
core:
image: trueblocks/core:v0.44.0-beta
image: trueblocks/core:v0.45.0-beta
build: ./
env_file: .env
ports:
Expand Down
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

VERSION=v0.44.0-beta
docker build build/core --tag trueblocks/core:$VERSION
VERSION=v0.45.0-beta
docker build . --tag trueblocks/core:$VERSION
4 changes: 2 additions & 2 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION=v0.44.0-beta
VERSION=v0.45.0-beta

docker build build/core --tag trueblocks/core:$VERSION
docker build . --tag trueblocks/core:$VERSION
docker push trueblocks/core:$VERSION

0 comments on commit 427f82f

Please sign in to comment.