-
Notifications
You must be signed in to change notification settings - Fork 5
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(docker): building simapp docker image #47
Conversation
@@ -19,7 +19,7 @@ WORKDIR /celestia_zkevm_ibc_demo | |||
|
|||
RUN uname -a &&\ | |||
CGO_ENABLED=${CGO_ENABLED} GOOS=${TARGETOS} GOARCH=${TARGETARCH} \ | |||
make build | |||
make build-simapp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was the fix. make build
doesn't do anything b/c it was recently renamed to make build-simapp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this
Is the problem here that we should be pushing the changes to simapp to ghcr
|
Yea we can do that too. My impression is that if you have a Docker image locally tag with latest then Docker will use that instead of fetching the latest one from GHCR so this could be fixed with:
|
If we're pushing the images to ghcr then we don't need to add |
As an aside, I get this error when trying to build the docker image: EDIT: It might be because I need to build it locally first
|
Closes #46
Also I noticed the
install-dependencies
command didn't show up in make help output. Fixed a few other small things while reviewing it.