-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added help text, show-config command, sane defaults * cleaned up __root__ references, fixed bugs, added small features - Fixed pyproject.toml dependencies - Added model properties to encapsulate `__root__` - Added online help for commands - Added `show-config` command - Added `--basedir` CLI option - Fixed docker syntax line in base template - Added support for SHELL in stage template - Fixed bug with LABEL k/v pair - Updated test suite
- Loading branch information
1 parent
b8dfaa2
commit 026fd31
Showing
6 changed files
with
71 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
- Add `setup` feature for modules | ||
- Add build profiles to control the generation of the bakefile(s) | ||
- Add duplicate name check to config file validation | ||
- Upgrade to pydantic 2.x | ||
- Unit tests | ||
- Integration (CLI) tests |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# syntax = docker/dockerfile:1.2 | ||
# syntax=docker/dockerfile:1 | ||
|
||
{% block pre_init %}{% endblock %} | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# syntax = docker/dockerfile:1.2 | ||
# syntax=docker/dockerfile:1 | ||
|
||
ARG PYTHON_VERSION=3.9 | ||
ARG BASE_OS=slim | ||
|