Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: gochain build err on docker file #9

Merged
merged 2 commits into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-gochain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:

- name: Push gochain-image to docker hub
run: |
docker tag goloop/gochain:latest iconcommunity/gochain:${{ steps.repository.outputs.tag }}
docker push iconcommunity/gochain:${{ steps.repository.outputs.tag }}
docker tag goloop/gochain:latest iconcommunity/gochain:latest
docker push iconcommunity/gochain:latest
working-directory: goloop
6 changes: 3 additions & 3 deletions dockerfiles/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ ENV PATH="/usr/local/go/bin:/usr/local/go/goloop/bin/:${PATH}"
WORKDIR /usr/local/go/

# Install goloop
RUN git clone https://github.com/icon-project/goloop.git \
&& cd goloop \
&& GOBUILD_TAGS= make goloop
RUN git clone https://github.com/icon-project/goloop.git
RUN cd goloop
RUN GOBUILD_TAGS= make goloop

WORKDIR /goloop

Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const DROGON_IMAGE = 'iconcommunity/drogon:0.1.0';

export const GOCHAIN_IMAGE = 'iconcommunity/gochain:v1.2.14';
export const GOCHAIN_IMAGE = 'iconcommunity/gochain:latest';

export const ICON_SANDBOX_DATA_REPO = 'icon-project/gochain-local';

Expand Down