Skip to content

Commit 8c910d4

Browse files
Remove apt-get dist-upgrade and upgrade to Python 3.12 to fix QEMU arm64 segfault (#2158)
* Remove apt-get dist-upgrade from Dockerfile to fix QEMU arm64 segfault Co-Authored-By: Itamar Hartstein <haritamar@gmail.com> * Upgrade base image to Python 3.12 and fix python-dev package name Co-Authored-By: Itamar Hartstein <haritamar@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Itamar Hartstein <haritamar@gmail.com>
1 parent 1b8dec0 commit 8c910d4

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10.7
1+
FROM python:3.12
22

33
ARG USR_APP_PATH=/usr/app
44
ENV DBT_LOG_PATH=$USR_APP_PATH/logs
@@ -7,9 +7,8 @@ WORKDIR $USR_APP_PATH
77
RUN chmod 777 .
88

99
RUN apt-get update \
10-
&& apt-get dist-upgrade -y \
1110
&& apt-get install -y --no-install-recommends \
12-
python-dev \
11+
python3-dev \
1312
libsasl2-dev \
1413
&& apt-get clean \
1514
&& rm -rf \

0 commit comments

Comments
 (0)