-
Notifications
You must be signed in to change notification settings - Fork 378
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
Docker hub tags outdated raiden version as latest #5049
Comments
It seems, that the container was build from the |
@konradkonrad where do we build/push the docker container? |
circleCI has a |
the version tagged releases are auto-build from dockerhub. I disabled the "build caching" for the release builds and try to retrigger a build |
I found the culprit in the build logs from dockerhub for
|
this "fails", because on dockerhub, there is no build argument provided, and instead the default is used:
|
We will need to optionally set I am not sure if this is going to work (or break other things), but I will try. |
okay, it seems that we need to add a build hook in order to pass |
This should fix raiden-network#5049 In order to build the proper raiden version from `Dockerfile`, we need to pass the intended `RAIDENVERSION` build argument. According to docker/hub-feedback#508 the current way of doing this is via build hook. dockerhub has the `SOURCE_BRANCH` environment variable available, that should translate just fine to the values we want in `RAIDENVERSION`.
Problem Definition
When pulling the docker image
raidennetwork/raiden:nightly
,raidennetwork/raiden:latest
orraidennetwork/raiden:v0.200.0-rc1
I would expect to get the latest RC.Actual result
Docker pulled the version
0.100.5a1.dev504+g68448ac97
:System Description
The text was updated successfully, but these errors were encountered: