You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airflow/Dockerfile
+28-10Lines changed: 28 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ FROM stackable/image/statsd_exporter AS statsd_exporter-builder
12
12
FROM stackable/image/vector AS airflow-build-image
13
13
14
14
ARG PRODUCT
15
+
ARG STATSD_EXPORTER
15
16
ARG PYTHON
16
17
ARG TARGETARCH
17
18
@@ -38,22 +39,39 @@ RUN microdnf update && \
38
39
python${PYTHON}-pip \
39
40
python${PYTHON}-wheel \
40
41
# The airflow odbc provider can compile without the development files (headers and libraries) (see https://github.com/stackabletech/docker-images/pull/683)
41
-
unixODBC && \
42
+
unixODBC \
43
+
# Needed to modify the SBOM
44
+
jq && \
42
45
microdnf clean all && \
43
46
rm -rf /var/cache/yum
44
47
45
-
RUN python${PYTHON} -m venv --system-site-packages /stackable/app && \
0 commit comments