Re: dnf in Dockerfiles

2016-05-15 Thread Kodiak Firesmith
Looking at the fedora-dockerfiles RPM for Fedora 24, it looks like the switch from YUM to DNF still hasn't happened. This is causing errors during docker runs that obviously aren't a big deal but it seems like an easy fix now to just swap the yums out for dnfs. Has this been talked about

Re: dnf in Dockerfiles

2015-03-19 Thread Dennis Gilmore
On Thursday, March 19, 2015 09:20:55 AM Scott Collier wrote: On 03/11/2015 09:40 AM, Major Hayden wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/11/2015 09:23 AM, Joe Brockmeier wrote: I'm CC'ing Scott b/c, if I'm not mistaken, he's done quite a lot of the work so far on

Re: dnf in Dockerfiles

2015-03-19 Thread Scott Collier
On 03/19/2015 09:25 AM, Daniel J Walsh wrote: Scott we found an interesting problem with libvirt protections on /dev/kvm. If you run this container on an atomic machine, the device has the wrong protections. You need to add chmod 666 /dev/kvm to make it work, or chmod 660 /dev/kvm chown

Re: dnf in Dockerfiles

2015-03-19 Thread Scott Collier
On 03/11/2015 09:40 AM, Major Hayden wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/11/2015 09:23 AM, Joe Brockmeier wrote: I'm CC'ing Scott b/c, if I'm not mistaken, he's done quite a lot of the work so far on the Dockerfiles - but also, I think he's looking for assistance there

Re: dnf in Dockerfiles

2015-03-19 Thread Daniel J Walsh
Scott we found an interesting problem with libvirt protections on /dev/kvm. If you run this container on an atomic machine, the device has the wrong protections. You need to add chmod 666 /dev/kvm to make it work, or chmod 660 /dev/kvm chown root:qemu /dev/kvm I think this would break on other

Re: dnf in Dockerfiles

2015-03-19 Thread Lalatendu Mohanty
On 03/19/2015 07:50 PM, Scott Collier wrote: On 03/11/2015 09:40 AM, Major Hayden wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/11/2015 09:23 AM, Joe Brockmeier wrote: I'm CC'ing Scott b/c, if I'm not mistaken, he's done quite a lot of the work so far on the Dockerfiles - but

Re: dnf in Dockerfiles

2015-03-19 Thread Colin Walters
On Thu, Mar 19, 2015, at 11:19 AM, Matthew Miller wrote: On Thu, Mar 19, 2015 at 11:10:33AM -0400, Colin Walters wrote: So dgilmore pointed out that f22 docker images will not have yum installed - which means we need to update the Dockerfiles for f22 to use dnf and not yum.

Re: dnf in Dockerfiles

2015-03-19 Thread Colin Walters
On Thu, Mar 19, 2015, at 10:25 AM, Daniel J Walsh wrote: I think this would break on other machines that do not have libvirt installed on the host. Right, it's a problem orthogonal to the Atomic Host. Scott we found an interesting problem with libvirt protections on

Re: dnf in Dockerfiles

2015-03-19 Thread Matthew Miller
On Thu, Mar 19, 2015 at 11:10:33AM -0400, Colin Walters wrote: So dgilmore pointed out that f22 docker images will not have yum installed - which means we need to update the Dockerfiles for f22 to use dnf and not yum. Personally, this feels like a lot of pain for little gain to me. We

Re: dnf in Dockerfiles

2015-03-11 Thread M. Edward (Ed) Borasky
The Dockerfiles are on Github IIRC - if I fork / pull request for my PostGIS one, is there a chance it'll get in the release? On Wed, Mar 11, 2015 at 7:40 AM, Major Hayden ma...@mhtx.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/11/2015 09:23 AM, Joe Brockmeier wrote: I'm

dnf in Dockerfiles

2015-03-11 Thread Joe Brockmeier
Hey all, So dgilmore pointed out that f22 docker images will not have yum installed - which means we need to update the Dockerfiles for f22 to use dnf and not yum. We probably ought to go through and sanity-check them all to ensure they work with the f22 image as well before, say, beta. I'm