Skip to content

Commit

Permalink
change base image to bitnami/python (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekneg54 authored Oct 2, 2024
1 parent 78d4b24 commit 38131c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* move `Configuration` to top level of documentation
* add `CONTRIBUTING` file
* sets the default for `flush_timeout` and `send_timeout` in `kafka_output` connector to `0` seconds
* changed python base image for logprep to `bitnami/python` in cause of better CVE governance

### Bugfix

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG PYTHON_VERSION=3.10

FROM python:${PYTHON_VERSION}-bullseye as build
FROM bitnami/python:${PYTHON_VERSION} as build
ARG LOGPREP_VERSION=latest
ARG http_proxy
ARG https_proxy
Expand All @@ -21,7 +21,7 @@ RUN if [ "$LOGPREP_VERSION" = "dev" ]; then pip install .;\
logprep --version


FROM python:${PYTHON_VERSION}-slim as prod
FROM bitnami/python:${PYTHON_VERSION} as prod
ARG http_proxy
ARG https_proxy
COPY --from=build /opt/venv /opt/venv
Expand Down

0 comments on commit 38131c6

Please sign in to comment.