File tree 5 files changed +107
-1
lines changed
{{cookiecutter.git_repo_name}}/containers
5 files changed +107
-1
lines changed Original file line number Diff line number Diff line change 38
38
" podman" ,
39
39
" docker"
40
40
],
41
+ "container_git_protocol" : [
42
+ " ssh" ,
43
+ " https"
44
+ ],
41
45
"__template_repo" : " https://github.com/btr1975/cookiecutter-python-fastapi-openapi" ,
42
- "__template_version" : " 1.0.11 " ,
46
+ "__template_version" : " 1.0.12 " ,
43
47
"_new_lines" : " \n " ,
44
48
"_copy_without_render" : [
45
49
" {{cookiecutter.__app_name}}/templates" ,
90
94
"__prompt__" : " Which container runtime will be used" ,
91
95
"podman" : " Podman" ,
92
96
"docker" : " Docker"
97
+ },
98
+ "container_git_protocol" : {
99
+ "__prompt__" : " Which protocol will be used for installing in the container" ,
100
+ "ssh" : " SSH" ,
101
+ "https" : " HTTPS"
93
102
}
94
103
}
95
104
}
Original file line number Diff line number Diff line change @@ -13,8 +13,15 @@ ARG build_branch=main
13
13
14
14
ENV BUILD_BRANCH=${build_branch}
15
15
16
+ {% if cookiecutter.container_git_protocol == "https" %}
17
+ # This can only be used if you repo is a public repo
18
+ RUN ${PIP_INSTALL_COMMAND} git+https://github.com/{{ cookiecutter.git_username }}/{{ cookiecutter.git_repo_name }}@${BUILD_BRANCH}
19
+ {% endif %}
20
+
21
+ {% if cookiecutter.container_git_protocol == "ssh" %}
16
22
RUN --mount=type=ssh,required=true \
17
23
${PIP_INSTALL_COMMAND} git+ssh://
[email protected] /{{ cookiecutter.git_username }}/{{ cookiecutter.git_repo_name }}@${BUILD_BRANCH}
24
+ {% endif %}
18
25
19
26
EXPOSE 8080/tcp
20
27
Original file line number Diff line number Diff line change @@ -13,8 +13,15 @@ ARG build_branch=main
13
13
14
14
ENV BUILD_BRANCH=${build_branch}
15
15
16
+ {% if cookiecutter.container_git_protocol == "https" %}
17
+ # This can only be used if you repo is a public repo
18
+ RUN ${PIP_INSTALL_COMMAND} git+https://github.com/{{ cookiecutter.git_username }}/{{ cookiecutter.git_repo_name }}@${BUILD_BRANCH}
19
+ {% endif %}
20
+
21
+ {% if cookiecutter.container_git_protocol == "ssh" %}
16
22
RUN --mount=type=ssh,required=true \
17
23
${PIP_INSTALL_COMMAND} git+ssh://
[email protected] /{{ cookiecutter.git_username }}/{{ cookiecutter.git_repo_name }}@${BUILD_BRANCH}
24
+ {% endif %}
18
25
19
26
EXPOSE 8080/tcp
20
27
Original file line number Diff line number Diff line change
1
+ # Makefile for container needs
2
+ # Author: Ben Trachtenberg
3
+ # Version: 1.0.0
4
+ #
5
+
6
+ .PHONY : build-container
7
+
8
+ info :
9
+ @echo " make options"
10
+ @echo " build-container To build the container"
11
+
12
+ {% if cookiecutter.container_runtime == "podman" %}
13
+ build-container :
14
+ @echo " Building the container with build_branch=$( build_branch) "
15
+ {% if cookiecutter.container_git_protocol == "https" %}
16
+ @podman build --build-arg=build_branch=$(build_branch) -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:$(build_branch) -f Containerfile
17
+ {% else %}
18
+ @podman build --ssh=default --build-arg=build_branch=$(build_branch) -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:$(build_branch) -f Containerfile
19
+ {% endif %}
20
+ {% endif %}
21
+
22
+ {% if cookiecutter.container_runtime == "docker" %}
23
+ build-container :
24
+ @echo " Building the container with build_branch=$( build_branch) "
25
+ {% if cookiecutter.container_git_protocol == "https" %}
26
+ @docker build --build-arg=build_branch=$(build_branch) -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:$(build_branch) -f Dockerfile
27
+ {% else %}
28
+ @docker build --ssh=default --build-arg=build_branch=$(build_branch) -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:$(build_branch) -f Dockerfile
29
+ {% endif %}
30
+ {% endif %}
Original file line number Diff line number Diff line change
1
+ @ ECHO OFF
2
+ REM Makefile for container needs
3
+ REM Author: Ben Trachtenberg
4
+ REM Version: 1.0.0
5
+ REM
6
+
7
+ SET option = %1
8
+ SET build_branch = %2
9
+
10
+ IF " %option% " == " " (
11
+ GOTO BAD_OPTIONS
12
+ )
13
+
14
+ IF " %build_branch% " == " " (
15
+ GOTO BAD_OPTIONS
16
+ )
17
+
18
+ {% if cookiecutter.container_runtime == "podman" % }
19
+ IF " %option% " == " build-container" (
20
+ @ ECHO " Building the container with build_branch=%build_branch% "
21
+ {% if cookiecutter.container_git_protocol == "https" % }
22
+ podman build --build-arg=build_branch=%build_branch% -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:%build_branch% -f Containerfile
23
+ {% else % }
24
+ podman build --ssh=default --build-arg=build_branch=%build_branch% -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:%build_branch% -f Containerfile
25
+ {% endif % }
26
+ GOTO END
27
+ )
28
+ {% endif % }
29
+
30
+ {% if cookiecutter.container_runtime == "docker" % }
31
+ IF " %option% " == " build-container" (
32
+ @ ECHO " Building the container with build_branch=%build_branch% "
33
+ {% if cookiecutter.container_git_protocol == "https" % }
34
+ docker build --build-arg=build_branch=%build_branch% -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:%build_branch% -f Containerfile
35
+ {% else % }
36
+ docker build --ssh=default --build-arg=build_branch=%build_branch% -t {{ cookiecutter.git_repo_name }}:latest -t {{ cookiecutter.git_repo_name }}:%build_branch% -f Containerfile
37
+ {% endif % }
38
+ GOTO END
39
+ )
40
+ {% endif % }
41
+
42
+
43
+ @ ECHO make options
44
+ @ ECHO build-container To build the container
45
+ GOTO END
46
+
47
+ :BAD_OPTIONS
48
+ @ ECHO Argument is missing
49
+ @ ECHO Usage: make.bat option build_branch
50
+ @ ECHO .
51
+ GOTO END
52
+
53
+ :END
You can’t perform that action at this time.
0 commit comments