Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .hadolint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ ignored:
# Reason: We use buildx which handles the build graph, no explicit image tags necessary
- DL3006

# Warning: Pin versions in pip.
# https://github.com/hadolint/hadolint/wiki/DL3006
# Reason: So far we haven't pinned versions. If we decide to, we should do that as a separate piece of work.
- DL3013

# Warning: Use the -y switch to avoid manual input dnf install -y <package>
# https://github.com/hadolint/hadolint/wiki/DL3038
# Reason: We set `assumeyes=True` in dnf.conf in our base image
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
- opa: Add version `0.67.1` ([#797]).
- vector: Add version `0.41.1` ([#802], [#815], [#867]).
- airflow: Add version `2.9.3` ([#809]).
- airflow: Add version `2.10.2` ([#877]).
- kafka: Add version `3.8.0` ([#813]).
- hive: Add version `4.0.0` ([#818]).
- trino: Add version `455` ([#822]).
Expand Down Expand Up @@ -66,6 +67,7 @@ All notable changes to this project will be documented in this file.
[#867]: https://github.com/stackabletech/docker-images/pull/867
[#868]: https://github.com/stackabletech/docker-images/pull/868
[#874]: https://github.com/stackabletech/docker-images/pull/874
[#877]: https://github.com/stackabletech/docker-images/pull/877

## [24.7.0] - 2024-07-24

Expand Down
3 changes: 2 additions & 1 deletion airflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ RUN microdnf update && \
libpq-devel \
openldap-devel \
openssl-devel \
python${PYTHON} \
python${PYTHON}-devel \
python${PYTHON}-pip \
python${PYTHON}-wheel \
Expand All @@ -41,7 +42,7 @@ RUN microdnf update && \
microdnf clean all && \
rm -rf /var/cache/yum

RUN python3 -m venv --system-site-packages /stackable/app && \
RUN python${PYTHON} -m venv --system-site-packages /stackable/app && \
source /stackable/app/bin/activate && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir apache-airflow[${AIRFLOW_EXTRAS}]==${PRODUCT} --constraint /tmp/constraints.txt && \
Expand Down
Loading