Sullivan SENECHAL
895e408f9d
Python 2.7 Alpine variant
2016-01-12 16:58:22 +01:00
Tianon Gravi
4cce2f7591
Merge pull request #75 from infosiftr/alpine-readline
...
Add readline-dev to alpine since it can't be added after the fact unless the headers are available during python compilation
2016-01-04 16:27:21 -08:00
Tianon Gravi
f5d45e6919
Merge pull request #76 from infosiftr/alpine
...
Add alpine to generate-stackbrew-library.sh also
2016-01-04 09:29:03 -08:00
Tianon Gravi
5980eb7c39
Add readline-dev to alpine since it can't be added after the fact unless the headers are available during python compilation
2016-01-03 09:35:59 -08:00
Tianon Gravi
103c1c4743
Add alpine to generate-stackbrew-library.sh also
2015-12-31 15:21:15 -08:00
Tianon Gravi
f20e921fbb
Merge pull request #74 from ncopa/alpine
...
[RFC] Add 3.5/alpine variant
2015-12-31 10:16:28 -08:00
ncopa
a418b4eaf1
Merge pull request #1 from infosiftr/alpine-tweaks
...
Adjust whitespace for better symmetry between Dockerfiles and cut image size in half by keeping fetch and compile in the same layer so the Python source goes away properly
2015-12-31 09:31:30 +01:00
Tianon Gravi
9c5b00f106
Adjust whitespace for better symmetry between Dockerfiles and cut image size in half by keeping fetch and compile in the same layer so the Python source goes away properly
...
Before: ~163.2 MB
After: ~89.05 MB
2015-12-30 15:40:04 -08:00
Natanael Copa
e677b04e46
3.5/alpine: fix uninstall of build time deps
...
don't uninstall gnupg twice
2015-12-29 13:28:01 +01:00
Natanael Copa
d254b78738
add alpine to travis config
2015-12-29 12:13:25 +01:00
Natanael Copa
c43ed837d3
alpine: Run fetch and gpg verify into same build step
2015-12-29 12:10:51 +01:00
Natanael Copa
1c4831ea8e
Add 3.5/alpine variant
2015-12-29 09:53:19 +01:00
Tianon Gravi
750546c0cd
Merge pull request #73 from infosiftr/curl-f
...
Add "-f" to all "curl" invocations
2015-12-23 16:27:34 -08:00
Tianon Gravi
033320b278
Add "-f" to all "curl" invocations
2015-12-23 16:12:06 -08:00
Tianon Gravi
00c226b82e
More places that Python 3.4 needs the backport...
2015-12-22 10:30:52 -08:00
Tianon Gravi
f9739c6da5
Backport pip fix from 3.5 to 3.4
2015-12-22 08:39:53 -08:00
Tianon Gravi
4388fdb353
Update to 3.4.4
2015-12-21 10:09:46 -08:00
Tianon Gravi
5909006206
Update to 2.7.11 and 3.5.1
...
Fixes #67
2015-12-08 11:55:48 -08:00
Tianon Gravi
8db0ad07b7
Update .travis.yml to account for Travis changes (especially now that Docker is no longer experimental 🎉 )
2015-11-20 09:50:24 -08:00
Tianon Gravi
be90aef3d8
Update README.md stub
2015-11-16 13:47:05 -08:00
Tianon Gravi
b48ca82ebb
Add Travis CI badge
2015-10-22 16:50:49 -07:00
Joe Ferguson
ffda6de7ff
3.5 is a release now
2015-10-19 12:47:24 -07:00
Tianon Gravi
89bb1b63ca
Add a tiny bit more resiliency to update.sh
2015-09-14 09:26:10 -07:00
Tianon Gravi
85c08ab4bb
Merge pull request #62 from ctolsen/master
...
Upgrade to final version of Python 3.5.0
2015-09-14 09:24:32 -07:00
Christoffer Torris Olsen
e4a0ed26c0
Upgrade to Python 3.5.0
2015-09-13 19:51:32 +02:00
Tianon Gravi
15798abb6c
Update pip to 7.1.2
2015-08-24 10:06:41 -07:00
Tianon Gravi
46db56362d
Update to pip 7.1.1
2015-08-21 08:57:00 -07:00
Tianon Gravi
cb11a6bf2e
Enhance "generate-stackbrew-library.sh" to only take into account changes to the Dockerfile or files from COPY in the Dockerfile for choosing the commit hash for a particular directory
2015-08-11 15:12:47 -07:00
Tianon Gravi
347a871f96
Put "docker images" in .travis.yml "after_script" section
2015-08-07 16:32:23 -07:00
Tianon Gravi
3e5826ad0c
Update .travis.yml to use "sudo: 9000" instead of "dist: trusty"
2015-07-22 10:35:24 -07:00
yosifkit
0da0608be2
Merge pull request #57 from infosiftr/3.5
...
Add 3.5.0b3
2015-07-17 13:35:53 -07:00
Tianon Gravi
0fa3202789
Add 3.5.0b3
2015-07-17 13:18:09 -07:00
Tianon Gravi
5fc2d82f70
Update to pip 7.1.0
2015-07-01 14:21:36 -07:00
yosifkit
e01317da90
Merge pull request #55 from infosiftr/readline
...
Add "libreadline-dev" to fix readline module usage
2015-06-16 16:00:55 -07:00
Tianon Gravi
89890623a0
Add "libreadline-dev" to fix readline module usage
2015-06-16 15:35:22 -07:00
yosifkit
6d962f44cb
Merge pull request #50 from mattrobenolt/pip-caching
...
Skip pip's default caching behavior
2015-06-11 19:05:30 -07:00
Matt Robenolt
7663560df7
Skip pip's default caching behavior
...
This caching includes the file that was downloaded over http,
as well as this new wheel cache. Neither of which are valuable
and just add bloat into the resulting images. Similar to removing
the apt caches on disk at each layer. This also makes pip install's
a tiny bit faster since pip avoids trying to automatically create
wheels (which is fast itself, but again, unnecessary in this world).
See:
- https://pip.pypa.io/en/latest/reference/pip_install.html#caching
- https://pip.pypa.io/en/latest/reference/pip_install.html#wheel-cache
2015-06-08 23:13:13 -07:00
yosifkit
425775316b
Merge pull request #52 from infosiftr/curses
...
Add libncurses-dev to slim buildDeps so that the curses module works
2015-06-08 13:58:54 -07:00
Tianon Gravi
82380dd56c
Add libncurses-dev to slim buildDeps so that the curses module works
2015-06-08 12:07:44 -07:00
Tianon Gravi
e622e82acf
Reorganize slim buildDeps so they're easier to review diffs on
2015-06-08 12:06:57 -07:00
Tianon Gravi
38e00bb6ba
Update to pip 7.0.3
2015-06-02 10:06:53 -07:00
Tianon Gravi
526ee08b34
Update to 2.7.10 and update pip to 7.0.1
2015-05-26 09:30:03 -07:00
yosifkit
d03644b6e2
Merge pull request #48 from TimeIncOSS/python32
...
Add support for Python 3.2
2015-05-26 09:28:14 -07:00
Radek Simko
8ac0675e33
Add support for Python 3.2
2015-05-23 18:43:45 -07:00
yosifkit
ab89b4ca4d
Merge pull request #47 from infosiftr/pip-7.0.0
...
Run update.sh: pip bump 7.0.0
2015-05-22 16:48:21 -07:00
Joe Ferguson
0255766eee
Run update.sh: pip bump 7.0.0
2015-05-22 16:21:25 -07:00
yosifkit
5939f85c99
Merge pull request #46 from infosiftr/pip-version
...
Install explicit version of "pip"
2015-05-19 10:30:53 -07:00
Tianon Gravi
12105a2a8c
Install explicit version of "pip"
2015-05-19 10:30:21 -07:00
Tianon Gravi
3575b03cc3
Reorganize Dockerfiles for slightly better cache
2015-05-19 09:32:07 -07:00
Tianon Gravi
0ead8a6878
Merge pull request #44 from infosiftr/gpg-keys
...
More resilient gpg getting
2015-04-23 12:28:31 -06:00