mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
e621ff4d5e
* Updates bob-builder to a version that clears out the previous build directory, which prevents the stale files seen in #379. * Adds a `buildenv-heroku-16` Make command to simplify the building and use of the Heroku-16 binary build environment. * Sets `S3_BUCKET` and `S3_PREFIX` in the Docker image, to save having to do so manually each time. * Removes the duplication of the bob-builder dependency between `Dockerfile` and `requirements.txt`. * Disables the pip version check during Docker build, to avoid the noisy stderr warning about Ubuntu 16.04 pip being older (v8.1.1). * Adds a `.dockerignore` to speed up the Docker build, by reducing the build context transferred to the daemon from 60MB to 2MB. * Applies some Dockerfile best practices like disabling/removing cached files (since layer invalidation makes caching pointless).
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
# These targets are not files
|
|
.PHONY: tests
|
|
|
|
test: test-cedar-14
|
|
|
|
test-cedar-14:
|
|
@echo "Running tests in docker (cedar-14)..."
|
|
@docker run -v $(shell pwd):/buildpack:ro --rm -it -e "STACK=cedar-14" heroku/cedar:14 bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
|
|
@echo ""
|
|
|
|
test-heroku-16:
|
|
@echo "Running tests in docker (heroku-16)..."
|
|
@docker run -v $(shell pwd):/buildpack:ro --rm -it -e "STACK=heroku-16" heroku/heroku:16-build bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
|
|
@echo ""
|
|
|
|
buildenv-heroku-16:
|
|
@echo "Creating build environment (heroku-16)..."
|
|
@echo
|
|
@docker build --pull -t python-buildenv-heroku-16 .
|
|
@echo
|
|
@echo "Usage..."
|
|
@echo
|
|
@echo " $$ export AWS_ACCESS_KEY_ID=foo AWS_SECRET_ACCESS_KEY=bar # Optional unless deploying"
|
|
@echo " $$ bob build runtimes/python-2.7.13"
|
|
@echo " $$ bob deploy runtimes/python-2.7.13"
|
|
@echo
|
|
@docker run -it --rm python-buildenv-heroku-16
|
|
|
|
tools:
|
|
git clone https://github.com/kennethreitz/pip-pop.git
|
|
mv pip-pop/bin/* vendor/pip-pop/
|
|
rm -fr pip-pop
|