-
Notifications
You must be signed in to change notification settings - Fork 47
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
[PFP-698] Rename latest branch #103
Conversation
dbf1d5b
to
7793f81
Compare
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.
RUN addgroup --system datahub && adduser --system datahub --ingroup datahub
This step has already been done in datahub-ingestion-base dockerfile, it might have a conflict when building this image
76371a1
to
281d2af
Compare
281d2af
to
880fbf0
Compare
@noggi Hello, After this merge, datahub-actions image doesn't work. I'm using standard docker compose for datahub. |
Prior to datahub-project/datahub#8515 datahub-ingestion-base image was published from
docker-ingestion-base.yml
workflow. datahub-project/datahub#8515 refactored it and merged into thedocker-unified
workflow.The legacy
docker-ingestion-base
workflow had the image tag hardcoded aslatest
, whereas in thedocker-unified
workflow the tag is set dynamically based on the git ref for current commit. On any merge to themaster
branch the tag is set tohead
, however the dockerfile in datahub-actions still refers to the latest image using the old tag name.@david-leifker