Skip to content

Commit

Permalink
build(deps): bump python in /kafka_events/demo/setup
Browse files Browse the repository at this point in the history
Bumps python from 3.9-alpine to 3.13-alpine.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 9, 2024
1 parent b0bbe19 commit e9662a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kafka_events/demo/setup/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-alpine AS base
FROM python:3.13-alpine AS base
WORKDIR /usr/src/app
RUN apk update && \
apk add \
Expand All @@ -20,7 +20,7 @@ COPY ./pyproject.toml ./poetry.lock ./
RUN poetry install --no-dev

# Copy virtual environment into clean base
FROM python:3.9-alpine as main
FROM python:3.13-alpine as main
WORKDIR /usr/src/app
COPY --from=base /usr/src/app /usr/src/app
ENV PATH="/usr/src/app/.venv/bin:$PATH"
Expand Down

0 comments on commit e9662a6

Please sign in to comment.