Skip to content

Commit c8dad67

Browse files
authored
Fix/revert python3.12 (#171)
* fix: revert to python3.12.11 in docker image * chore: bump version to 25.9.0
1 parent 5fae069 commit c8dad67

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.7-alpine3.22 AS builder
1+
FROM python:3.12.11-alpine3.22 AS builder
22

33
WORKDIR /
44

@@ -13,12 +13,12 @@ COPY pyproject.toml /
1313
RUN poetry config virtualenvs.create false && \
1414
poetry install --no-interaction --without dev --no-ansi --no-root
1515

16-
FROM python:3.13.7-alpine3.22
16+
FROM python:3.12.11-alpine3.22
1717

1818
WORKDIR /
1919

2020
# copy pre-built packages to this image
21-
COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
21+
COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
2222

2323
# now copy the actual code we will execute (poetry install above was just for dependencies)
2424
COPY kube_downscaler /kube_downscaler

chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ name: py-kube-downscaler
33
description: A Helm chart for deploying py-kube-downscaler
44

55
type: application
6-
version: 0.3.6
7-
appVersion: "25.8.0"
6+
version: 0.3.7
7+
appVersion: "25.9.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool]
22
[tool.poetry]
33
name = "kube-downscaler"
4-
version = "25.8.0"
4+
version = "25.9.0"
55
description = "Scale down Kubernetes deployments after work hours"
66
authors = ["Jonathan Mayer <jonathan.mayer@telekom.de>", "Jan Taeuber <jan.taeuber@telekom.de>", "Samuel Esposito <samuel-esp@hotmail.it>", "Johannes Thiem <johannesthiem6@gmail.com>"]
77

0 commit comments

Comments
 (0)