Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
deploy
  • Loading branch information
trueberryless committed Nov 19, 2024
1 parent 4227652 commit 3fa91c6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ Provide single point of truth for workflow files.
│ │ ├── deployment.yaml
│ │ ├── ingress.yaml
│ │ ├── namespace.yaml
│ └-─ └-─ service.yaml
│ ├── └-─ service.yaml
│ └-─ Dockerfile
├── .gitignore
├── LICENCE
├── package.json
Expand Down
7 changes: 7 additions & 0 deletions repos.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@
"props": {
"repositoryName": "starlight-view-modes"
}
},
{
"path": "template-files/Dockerfile",
"targetPath": "Dockerfile",
"props": {
"documentationFolder": "docs"
}
}
]
}
Expand Down
4 changes: 4 additions & 0 deletions template-files/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM httpd:2.4 AS runtime
COPY /<%= documentationFolder %>/dist /usr/local/apache2/htdocs/
EXPOSE 80
EXPOSE 443

0 comments on commit 3fa91c6

Please sign in to comment.