Skip to content

Commit

Permalink
PORT-8407 Update the base image of the dockerfile used in the Ocean i…
Browse files Browse the repository at this point in the history
…ntegration scaffolder (#665)

# Description

What - Update the base image used to build container images, that is
specified in the templated Dockerfile for new integrations
Why - Because we're currently using `slim-buster` which is no longer
maintained
How - Update to `slim-bookworm` which is the current stable LTS Debian
distro


## Type of change

Please leave one option from the following and delete the rest:

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] New Integration (non-breaking change which adds a new integration)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [X] Non-breaking change (fix of existing functionality that will not
change current behavior)
- [ ] Documentation (added/updated documentation)

## Screenshots

Include screenshots from your environment showing how the resources of
the integration will look.

## API Documentation

Provide links to the API documentation used for this integration.
  • Loading branch information
MPTG94 authored May 30, 2024
1 parent 0205024 commit 8297606
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

<!-- towncrier release notes start -->

## 0.5.23 (2024-05-30)

### Improvements

- Updated the base image used in the Dockerfile that is created during integration scaffolding from `python:3.11-slim-buster` to `python:3.11-slim-bookworm`

## 0.5.22 (2024-05-29)

### Bug Fixes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim-buster
FROM python:3.11-slim-bookworm

ENV LIBRDKAFKA_VERSION 1.9.2

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "port-ocean"
version = "0.5.22"
version = "0.5.23"
description = "Port Ocean is a CLI tool for managing your Port projects."
readme = "README.md"
homepage = "https://app.getport.io"
Expand Down

0 comments on commit 8297606

Please sign in to comment.