-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Navy Linux Docker image support #11081
base: master
Are you sure you want to change the base?
Conversation
Navy Linux Docker repo https://github.com/navy-linux/docker-images |
can you please help on this error |
fixed. |
I'm sorry -- the diff is an expected failure because this is a new base image and thus will inevitably have a longer file listing than the CI can reasonably place into a comment. |
test pass on base image |
@tianon can please try again to run the job. |
Sorry for the delay 🙇 I'll try to explain this more clearly -- what I expect to see for a base image like this is a repository with a branch on it (can be the main branch if you want, more on that in a second) that has a If there's anything I can do to help set that up, please let me know! |
Diff for b088ef3:diff --git a/_bashbrew-cat b/_bashbrew-cat
index bdfae4a..0e6ce60 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1 +1,5 @@
-Maintainers: New Image! :D (@docker-library-bot)
+Maintainers: Navy Linux by Navy Foundation <[email protected]> (@navylinux)
+GitRepo: https://github.com/navy-linux/docker-images.git
+
+Tags: 8.4r1, latest
+GitCommit: 664aec2a49d0323c61b6ff183fcb35ed943ae182
diff --git a/_bashbrew-list b/_bashbrew-list
index e69de29..56543e9 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -0,0 +1,2 @@
+navylinux:8.4r1
+navylinux:latest
diff --git a/navylinux_latest/Dockerfile b/navylinux_latest/Dockerfile
new file mode 100644
index 0000000..5e6097d
--- /dev/null
+++ b/navylinux_latest/Dockerfile
@@ -0,0 +1,5 @@
+FROM scratch
+ADD amd64/navylinux-8-amd64.img /
+LABEL org.label-schema.schema-version="1.0" org.label-schema.name="Navy Linux" org.label-schema.vendor="NavyLinux" org.label-schema.license="GPLv2" org.label-schema.build-date="20210723"
+RUN yum update -y
+CMD ["/bin/bash"]
diff --git a/navylinux_latest/amd64/navylinux-8-amd64.img b/navylinux_latest/amd64/navylinux-8-amd64.img
new file mode 100644
index 0000000..d73246c
Binary files /dev/null and b/navylinux_latest/amd64/navylinux-8-amd64.img differ |
@tianon Please review the updated pull request. and Thanks for the help. |
Request for the Navy Linux Docker image.
Checklist for Review
NOTE: This checklist is intended for the use of the Official Images maintainers both to track the status of your PR and to help inform you and others of where we're at. As such, please leave the "checking" of items to the repository maintainers. If there is a point below for which you would like to provide additional information or note completion, please do so by commenting on the PR. Thanks! (and thanks for staying patient with us ❤️)
existing official images have been considered as a base? (ie, iffoobar
needs Node.js, hasFROM node:...
instead of grabbingnode
via other means been considered?)FROM scratch
, tarballs only exist in a single commit within the associated history?