[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
[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