Skip to content

Commit e94303c

Browse files
committed
ci(renovate): fix to target version
1 parent ed50bd3 commit e94303c

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.releaserc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins:
1010
- replacements:
1111
- files:
1212
- "pyproject.toml"
13-
from: "version = '.*'"
13+
from: '(?<=\[tool\.poetry\]\n(?:.*\n)*)version = ".*"'
1414
to: "version = '${nextRelease.version}'"
1515
results:
1616
- file: "pyproject.toml"

Dockerfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM python:3.13-slim as builder
2+
FROM python:3.12-slim as builder
33

44
WORKDIR /app
55

@@ -26,18 +26,14 @@ COPY pyproject.toml poetry.lock* ./
2626
RUN poetry install --no-dev --no-root
2727

2828
# Final stage
29-
FROM python:3.13-slim
29+
FROM python:3.12-slim
3030

3131
RUN useradd --create-home appuser
3232

3333
WORKDIR /app
3434

35-
# Install runtime dependencies
36-
RUN apt-get update && apt-get install -y --no-install-recommends \
37-
&& rm -rf /var/lib/apt/lists/*
38-
3935
# Copy installed packages from builder
40-
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
36+
COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
4137
COPY --from=builder /usr/local/bin /usr/local/bin
4238

4339
# Copy application code

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Stressed Pod
22

3+
34
## Overview
45
Stressed Pod is a tool designed to simulate various types of loads on a Kubernetes pod. It enables testing application resilience by generating CPU, memory loads, and producing custom logs. This tool is particularly useful for performance testing, resource sizing, and scaling policy validation.
56

0 commit comments

Comments
 (0)