-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add basic imagespec example Signed-off-by: nikki everett <[email protected]> * use latest base image and python 3.11 Signed-off-by: nikki everett <[email protected]> * rename to distinguish from basic dockerfile template Signed-off-by: nikki everett <[email protected]> * rename simple example Signed-off-by: nikki everett <[email protected]> * update base image Signed-off-by: nikki everett <[email protected]> * update repo README Signed-off-by: nikki everett <[email protected]> * update imagespec Signed-off-by: nikki everett <[email protected]> * comment out imagespec definition, make linter fixes Signed-off-by: nikki everett <[email protected]> * update steps Signed-off-by: nikki everett <[email protected]> * make documentation more procedural Signed-off-by: nikki everett <[email protected]> * small edits Signed-off-by: nikki everett <[email protected]> * remove docker section Signed-off-by: nikki everett <[email protected]> * add hello world template Signed-off-by: nikki everett <[email protected]> * rename directory to make it clear this is a template, remove unnecessary requirements, small edits to example python script Signed-off-by: nikki everett <[email protected]> * this has been renamed Signed-off-by: nikki everett <[email protected]> * rename template directory Signed-off-by: nikki everett <[email protected]> * update with new template name Signed-off-by: nikki everett <[email protected]> * update with hello world template Signed-off-by: nikki everett <[email protected]> * add docker specific instructions back to readme Signed-off-by: nikki everett <[email protected]> * use cookiecutter for hello world template Signed-off-by: nikki everett <[email protected]> * use cookiecutter for basic imagespec template Signed-off-by: nikki everett <[email protected]> * fix typo Signed-off-by: nikki everett <[email protected]> * remove extra cookiecutter imagespec template Signed-off-by: nikki everett <[email protected]> --------- Signed-off-by: nikki everett <[email protected]>
- Loading branch information
Showing
12 changed files
with
34 additions
and
19 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"project_name": "basic_example_dockerfile" | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../{{cookiecutter.project_name}}/Dockerfile → .../{{cookiecutter.project_name}}/Dockerfile
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 @@ | ||
FROM python:3.8-slim-buster | ||
FROM python:3.10-slim-buster | ||
|
||
WORKDIR /root | ||
ENV VENV /opt/venv | ||
|
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
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