Skip to content

Commit 3396ac8

Browse files
committed
added makes to continerfiles
1 parent 77ee41c commit 3396ac8

File tree

5 files changed

+107
-1
lines changed

5 files changed

+107
-1
lines changed

cookiecutter.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@
3838
"podman",
3939
"docker"
4040
],
41+
"container_git_protocol": [
42+
"ssh",
43+
"https"
44+
],
4145
"__template_repo": "https://github.com/btr1975/cookiecutter-python-fastapi-openapi",
42-
"__template_version": "1.0.11",
46+
"__template_version": "1.0.12",
4347
"_new_lines": "\n",
4448
"_copy_without_render": [
4549
"{{cookiecutter.__app_name}}/templates",
@@ -90,6 +94,11 @@
9094
"__prompt__": "Which container runtime will be used",
9195
"podman": "Podman",
9296
"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"
93102
}
94103
}
95104
}

{{cookiecutter.git_repo_name}}/containers/Containerfile

+7
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,15 @@ ARG build_branch=main
1313

1414
ENV BUILD_BRANCH=${build_branch}
1515

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" %}
1622
RUN --mount=type=ssh,required=true \
1723
${PIP_INSTALL_COMMAND} git+ssh://[email protected]/{{ cookiecutter.git_username }}/{{ cookiecutter.git_repo_name }}@${BUILD_BRANCH}
24+
{% endif %}
1825

1926
EXPOSE 8080/tcp
2027

{{cookiecutter.git_repo_name}}/containers/Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,15 @@ ARG build_branch=main
1313

1414
ENV BUILD_BRANCH=${build_branch}
1515

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" %}
1622
RUN --mount=type=ssh,required=true \
1723
${PIP_INSTALL_COMMAND} git+ssh://[email protected]/{{ cookiecutter.git_username }}/{{ cookiecutter.git_repo_name }}@${BUILD_BRANCH}
24+
{% endif %}
1825

1926
EXPOSE 8080/tcp
2027

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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

0 commit comments

Comments
 (0)