-
Notifications
You must be signed in to change notification settings - Fork 14
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 <nikki@union.ai> * use latest base image and python 3.11 Signed-off-by: nikki everett <nikki@union.ai> * rename to distinguish from basic dockerfile template Signed-off-by: nikki everett <nikki@union.ai> * rename simple example Signed-off-by: nikki everett <nikki@union.ai> * update base image Signed-off-by: nikki everett <nikki@union.ai> * update repo README Signed-off-by: nikki everett <nikki@union.ai> * update imagespec Signed-off-by: nikki everett <nikki@union.ai> * comment out imagespec definition, make linter fixes Signed-off-by: nikki everett <nikki@union.ai> * update steps Signed-off-by: nikki everett <nikki@union.ai> * make documentation more procedural Signed-off-by: nikki everett <nikki@union.ai> * small edits Signed-off-by: nikki everett <nikki@union.ai> * remove docker section Signed-off-by: nikki everett <nikki@union.ai> * add hello world template Signed-off-by: nikki everett <nikki@union.ai> * rename directory to make it clear this is a template, remove unnecessary requirements, small edits to example python script Signed-off-by: nikki everett <nikki@union.ai> * this has been renamed Signed-off-by: nikki everett <nikki@union.ai> * rename template directory Signed-off-by: nikki everett <nikki@union.ai> * update with new template name Signed-off-by: nikki everett <nikki@union.ai> * update with hello world template Signed-off-by: nikki everett <nikki@union.ai> * add docker specific instructions back to readme Signed-off-by: nikki everett <nikki@union.ai> * use cookiecutter for hello world template Signed-off-by: nikki everett <nikki@union.ai> * use cookiecutter for basic imagespec template Signed-off-by: nikki everett <nikki@union.ai> * fix typo Signed-off-by: nikki everett <nikki@union.ai> * remove extra cookiecutter imagespec template Signed-off-by: nikki everett <nikki@union.ai> --------- Signed-off-by: nikki everett <nikki@union.ai>
- 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