Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
a3888s committed Dec 21, 2024
1 parent a2ea54e commit 19be869
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DOCKER_TAG=v0.0.5
DOCKER_TAG=v0.0.6
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
set -a
source .env
echo "DOCKER_TAG=${DOCKER_TAG}" >> $GITHUB_ENV
echo "DOCKER_TAG=${DOCKER_TAG}" >> $GITHUB_ENV
- name: Verify DOCKER_TAG
run: |
Expand Down
4 changes: 2 additions & 2 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def do_GET(self):
</style>
</head>
<body>
<h1>StepFinalProject v 0.0.5</h1>
<h1>StepFinalProject v 0.0.6</h1>
</body>
</html>
"""
Expand All @@ -41,6 +41,6 @@ def do_GET(self):
# Основна частина програми
if __name__ == "__main__":
server = HTTPServer(("0.0.0.0", 8080), SimpleHandler) # Ініціалізація сервера на порту 8080
version = "v 0.0.5"
version = "v 0.0.6"
print(f"StepFinalProject {version}") # Виведення інформації про запуск у консоль
server.serve_forever() # Запуск сервера для обробки запитів
2 changes: 1 addition & 1 deletion app/k8s/prod/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ spec:
spec:
containers:
- name: python-backend
image: a3888s/step-final-project-prod:v0.0.5
image: a3888s/step-final-project-prod:v0.0.6
ports:
- containerPort: 8080 # Відкритий порт контейнера

0 comments on commit 19be869

Please sign in to comment.