Skip to content

Commit

Permalink
sd
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas committed Jul 16, 2024
1 parent 49e0fe6 commit 3938ce7
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions technologies/job/python/python-3.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,34 +1,3 @@
ARG base_img

FROM ${base_img} AS BASE_IMG

# LIBS PART BEGIN
RUN apt update -qq && apt install -qqy --no-install-recommends \
python3-pip \
gcc \
g++ \
libsasl2-2 \
libsasl2-modules-ldap \
build-essential \
unixodbc \
unixodbc-dev \
libpq-dev \
libsqlite3-dev \
libkrb5-dev \
libsasl2-dev \
libssl-dev \
libcurl4-openssl-dev \
libgeos-dev \
swig \
python3-matplotlib \
python3-lxml \
&& rm -rf /var/lib/apt/lists/*;
# LIBS PART END

# Need to read requirements.txt file sequentially to ensure consistent installation order
COPY resources/requirements.txt /tmp/requirements.txt
RUN grep -v '^#' /tmp/requirements.txt | xargs -L 1 pip --no-cache-dir install \
&& rm -rf /root/.cachex \
&& rm -rf /boot/.cache/pip \
&& rm -rf ~/.cache/pip

0 comments on commit 3938ce7

Please sign in to comment.