Skip to content

Commit

Permalink
Remove references to dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons authored Aug 21, 2024
1 parent eb6af91 commit 5d5aa0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

data_common_tag = b"data_common:sha-" + data_common_tag

for d in ["Dockerfile", "Dockerfile.dev"]:
for d in ["Dockerfile"]:

with open(d, 'rb') as open_file:
content = open_file.read()
Expand Down
2 changes: 1 addition & 1 deletion hooks/pre_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def amend_file(filepath: Path, replace: dict):
amend_file(Path(repo_dir, ".devcontainer", "devcontainer.json"), replace)
amend_file(Path(repo_dir, "pyproject.toml"), replace)
amend_file(Path(repo_dir, "docker-compose.yml"), replace)
amend_file(Path(repo_dir, "Dockerfile.dev"), replace)
# amend_file(Path(repo_dir, "Dockerfile.dev"), replace)
amend_file(Path(repo_dir, "Dockerfile"), replace)
amend_file(Path(repo_dir, "tests", "test_template_data_repo.py"), replace)
amend_file(Path(repo_dir, "docs", "index.md"), replace)
Expand Down

0 comments on commit 5d5aa0b

Please sign in to comment.