-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Add builder-lambda plugin #5202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fb953aa to
509f22f
Compare
509f22f to
c471842
Compare
f59f956 to
b6064a0
Compare
It's currently broken because there are flags in there that aren't actually implemented
While the lambda-builder project builds for armhf, the underlying images are not armhf/arm compatible (only arm64).
This will allow schedulers to make decisions when interacting with images from specific builders.
- Keep the container alive via DOCKER_LAMBDA_STAY_OPEN=1 - Set the default listening port to 5000 (which is what herokuish will use)
b6064a0 to
86d7b6b
Compare
We also have a special carveout for herokuish as folks may deploy built images with it.
github-actions bot
pushed a commit
that referenced
this pull request
Aug 17, 2022
# History ## 0.28.0 Install/update via the bootstrap script: ```shell wget https://raw.githubusercontent.com/dokku/dokku/v0.28.0/bootstrap.sh sudo DOKKU_TAG=v0.28.0 bash bootstrap.sh ``` See the [0.28.0 migration guide](/docs/appendices/0.28.0-migration-guide.md) for more information on migrating to 0.28.0. ### Bug Fixes - #5299: @josegonzalez Do not trigger restarts when mutating config globally - #5298: @josegonzalez Set core.bare=true on correct repository path ### New Features - #5300: @josegonzalez Add the ability to disable the init process - #5295: @josegonzalez Add an official caddy proxy implementation - #5293: @josegonzalez Add an official traefik proxy implementation - #5202: @josegonzalez Add builder-lambda plugin ### Documentation - #5296: @janlavicka Fix typo in kubernetes docs - #5288: @josegonzalez Do not have bottom border float on page - #5283: @alexgleason Homepage: fix link in quick install guide ### Other - #5297: @josegonzalez Update vector image - #5294: @josegonzalez Document and enable alternative proxy implementations - #5291: @dependabot[bot] chore(deps): bump werkzeug from 2.2.1 to 2.2.2 in /tests/apps/python-flask - #5292: @dependabot[bot] chore(deps): bump flask from 2.2.1 to 2.2.2 in /tests/apps/multi - #5290: @dependabot[bot] chore(deps): bump flask from 2.2.1 to 2.2.2 in /tests/apps/python-flask - #5227: @josegonzalez Drop forwarded port from vagrant setup - #5285: @josegonzalez Update all development dependencies - #5240: @josegonzalez Drop support for CentOS, Fedora, OpenSuse, as well as Debian 9 - #5281: @dependabot[bot] chore(deps): bump flask from 2.1.3 to 2.2.1 in /tests/apps/multi - #5280: @dependabot[bot] chore(deps): bump flask from 2.1.3 to 2.2.1 in /tests/apps/python-flask - #5284: @dependabot[bot] chore(deps-dev): bump heroku/heroku-buildpack-php from 222 to 223 in /tests/apps/php
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This plugin will be used to build lambda functions (which can be run on the Dokku server in development or deployed to AWS via a separate scheduler plugin).
Todo:
Closes #4901