We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e8ead7 commit c154b17Copy full SHA for c154b17
base.dockerfile
@@ -7,7 +7,7 @@ ENV SHELL=/bin/bash
7
WORKDIR /app/
8
9
# Build with some basic utilities
10
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && apt-get install -y --no-install-recommends \
11
python3-pip \
12
apt-utils \
13
vim \
@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \
17
RUN ln -s /usr/bin/python3 /usr/bin/python
18
19
# build with some basic python packages
20
-RUN pip install \
+RUN pip install --no-cache-dir \
21
numpy \
22
torch \
23
torchvision \
0 commit comments