PMXBOT Log file Viewer

Help | Karma | Search:

#pypa-dev logs for Saturday the 16th of July, 2016

(Back to #pypa-dev overview) (Back to channel listing) (Animate logs)
[03:07:39] <wismer> dstufft: what's require.io for? (or rather, what's it do?)
[03:08:37] <dstufft> wismer: maybe you're more familar with greenkeeper.io for npm? Basically it just monitors your list of dependencies for new releases, and submits a new PR to update your pinned versions when one releases
[03:09:04] <wismer> ahh I see.
[05:11:54] <wismer> dstufft: I rebased the branches. I'm a little sloppy with merge conflicts - if you want me to squash, let me know.
[05:12:06] <dstufft> wismer: we do squash merges anyways
[05:12:09] <dstufft> so it's no problem
[05:12:15] <wismer> ok
[05:12:43] <wismer> well have a good night. Let me know if there's anything else I can do to help out on the site.
[14:47:57] <berker> dstufft: can these lines be removed to decrease the build time? https://github.com/pypa/warehouse/blob/master/Dockerfile#L22-L24
[15:15:30] <dstufft> berker: um, probably yea. Since this is just local stuff we don't really need to worry about the sizes of the containers I suppose
[15:32:10] <berker> dstufft: if I understand Dockerfile correctly, stale packages and files will be removed later https://github.com/pypa/warehouse/blob/master/Dockerfile#L58
[15:32:42] <dstufft> berker: each RUN is it's own layer, and they sort of store a delta of each layer
[15:33:00] <dstufft> so adding files in one layer, and deleting them in a later layer actually makes the resulting containre image bigger
[15:55:31] <berker> dstufft: oh makes sense, thanks