-
Notifications
You must be signed in to change notification settings - Fork 17
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
refactor: removed dogecoin-qt #35
Conversation
in a sub optimal fashion of not submitting PR's with atomic commits, i forgot to mention changing python3 to python3-minimal and adding .gitignore and .dockerignore files as placeholders to remind us that they're excellent assets to reduce overhead on system resources in particular build context archives every time we run build. this reduces the linux/amd64 image for instance from 91.22 MB: to 57.11 MB without removing WORKDIR /tmp and COPY ...tar.gz ./: to 47.62 MB in it's current state as reflected in this PR: |
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.
A good opportunity to speak about what we want to do regarding dogecoin-qt
.
It should be possible to containerize graphical application (did you tried it ?), by potentially sharing the window system of the host. I saw some articles related to it, I tried briefly few months ago but failed, I didn't go really far.
But it will probably not be the main use and be really a really specific feature. I didn't see the dogecoin-qt
size, which is ~30MB on amd64. As you show, removing this executable divide almost the size of the image by 2, which is really significant.
Idk if adding GUI worth it for a Dogecoin Core image, if we could get rid of it for now and eventually if there is some demand in the future think about adding it ? Maybe it could be also a qt
tag/image, to be able to provide dogecoin-qt
through docker with keeping the benefit of a small size image only with other executables as main image.
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.
Need some changes:
- Please put changes to
*ignore
files in a separate pull request, has nothing to do with removing QT - Please further separate this into 2 proposals:
- removal of
dogecoin-qt
- this is easy to approve - changing the way we copy the files into the final container - this needs much more discussion and I have a lot of comments on that particular code.
- removal of
Re: whether we want QT. There is no dogecoin-qt for ARM architectures for dogecoin 1.14.5. So we can only provide it on a subset of images right now, I'm not really a fan.
I'd expect that we'd need to include some X11 libraries in the docker image for that to work and that significantly increases attack/maintenance surface. I'd recommend that if there is a demand for this, to build it in a separate variant rather than in the main image? As a node operator, I would not want my dogecoind deployment to be bloated with X11 stuff. |
90faeda
to
7ea3f3f
Compare
done |
i personally prefer headless operation over gui so i share your sentiment. i think we should potentially support this in the future but at the moment i'm not interested in maintaining or developing such an image. |
1.14.5/bullseye/Dockerfile
Outdated
@@ -77,7 +77,7 @@ COPY --from=verify /verify/dogecoin.tar.gz ./ | |||
|
|||
# Move downloaded binaries and man pages in the container system. | |||
# Setuid on binaries with $USER rights, to limit root usage. | |||
RUN tar -xvf dogecoin.tar.gz --strip-components=1 \ | |||
RUN tar -xvf dogecoin.tar.gz --exclude="*-qt*" --strip-components=1 \ |
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.
Recommend to not do this, and instead explicitly copy the files we need, as that is less error-prone. On line 82, can do cp bin/dogecoind bin/dogecoin-cli bin/dogecoin-tx /usr/local/bin/
instead of wildcard? Same on line 81...
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.
done
i can't re-request a review from you so pinging you here. my thoughts on this are here: #35 (comment) |
7ea3f3f
to
a8aacce
Compare
Blocked by #34 as that removes manpages but adds some |
we don't currently support the use of X window system/server (xlib/libX11) thus rendering dogecoin-qt as unnecessary bloat.
a8aacce
to
425e340
Compare
removed copying manpages and ref of dogecoin-qt in entrypoint. |
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.
tested ACK.
Full x86_64 image went from 195MB at dc0a034 to 160MB with this PR
@AbcSxyZ could you please let us know if you:
Thanks 🙏 |
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.
ACK for me, a good thing to remove dogecoin-qt
.
removed dogecoin-qt from Dockerfile and entrypoint.py since it's not supported and wasting resources.
refined Dockerfile by extracting the specific files we need from our archive and copying each while setting appropriate permissions and owner:group in each COPY.
removed unnecessary WORKDIR /tmp since we are only copying specific files from verify build stage, thus we have nothing to rm -rf *