mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-21 15:52:28 +00:00
Remove dependencies and cache in pip
In my machine this produces images that are ~300MB smaller.
This commit is contained in:
parent
41dc89b23b
commit
7c8dbf3262
@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \
|
|||||||
libblas-dev liblapack-dev liblapacke-dev gfortran \
|
libblas-dev liblapack-dev liblapacke-dev gfortran \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN pip install --upgrade numpy scipy scikit-learn
|
RUN pip install --no-cache-dir --upgrade numpy scipy scikit-learn
|
||||||
|
|
||||||
RUN mkdir /cache/ /senpy-plugins /data/
|
RUN mkdir /cache/ /senpy-plugins /data/
|
||||||
|
|
||||||
@ -21,8 +21,8 @@ ONBUILD WORKDIR /senpy-plugins/
|
|||||||
|
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY test-requirements.txt requirements.txt /usr/src/app/
|
COPY test-requirements.txt requirements.txt /usr/src/app/
|
||||||
RUN pip install --use-wheel -r test-requirements.txt -r requirements.txt
|
RUN pip install --no-cache-dir --use-wheel -r test-requirements.txt -r requirements.txt
|
||||||
COPY . /usr/src/app/
|
COPY . /usr/src/app/
|
||||||
RUN pip install --no-index --no-deps --editable .
|
RUN pip install --no-cache-dir --no-index --no-deps --editable .
|
||||||
|
|
||||||
ENTRYPOINT ["python", "-m", "senpy", "-f", "/senpy-plugins/", "--host", "0.0.0.0"]
|
ENTRYPOINT ["python", "-m", "senpy", "-f", "/senpy-plugins/", "--host", "0.0.0.0"]
|
||||||
|
@ -3,4 +3,3 @@ pytest-cov
|
|||||||
pytest
|
pytest
|
||||||
scikit-learn
|
scikit-learn
|
||||||
numpy
|
numpy
|
||||||
gsitk
|
|
||||||
|
Loading…
Reference in New Issue
Block a user