File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change 11FROM python:3.10.8
22WORKDIR /home/pandas
33
4- RUN apt-get update && apt-get -y upgrade
5- RUN apt-get install -y build-essential bash-completion
4+ RUN apt-get update && \
5+ apt-get -y upgrade && \
6+ rm -rf /var/lib/apt/lists/*
67
7- # hdf5 needed for pytables installation
8- # libgles2-mesa needed for pytest-qt
9- RUN apt-get install -y libhdf5-dev libgles2-mesa-dev
8+ RUN apt-get update && apt-get install -y \
9+ build-essential \
10+ bash-completion \
11+ # hdf5 needed for pytables installation
12+ libhdf5-dev \
13+ # libgles2-mesa needed for pytest-qt
14+ libgles2-mesa-dev && \
15+ rm -rf /var/lib/apt/lists/*
1016
11- RUN python -m pip install --upgrade pip
1217COPY requirements-dev.txt /tmp
13- RUN python -m pip install -r /tmp/requirements-dev.txt
18+ RUN python -m pip install --no-cache-dir --upgrade pip && \
19+ python -m pip install --no-cache-dir -r /tmp/requirements-dev.txt
1420RUN git config --global --add safe.directory /home/pandas
1521
1622ENV SHELL="/bin/bash"
You can’t perform that action at this time.
0 commit comments