|
@@
-13,22
+13,22
ADD requirements.txt ./requirements.txt
|
|
13
|
RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommends \
|
|
13
|
RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommends \
|
|
14
|
gcc \
|
|
14
|
gcc \
|
|
15
|
g++ \
|
|
15
|
g++ \
|
|
16
|
&& pip install -v --timeout 120 --no-cache-dir ./Django-4.1.5-py3-none-any.whl \
|
|
16
|
# && pip install -v --timeout 120 --no-cache-dir ./Django-4.1.5-py3-none-any.whl \
|
|
17
|
&& pip install -v --timeout 120 --no-cache-dir ./django-bootstrap5-22.2.tar.gz \
|
|
17
|
# && pip install -v --timeout 120 --no-cache-dir ./django-bootstrap5-22.2.tar.gz \
|
|
18
|
&& pip install -v --timeout 120 --no-cache-dir ./psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
18
|
# && pip install -v --timeout 120 --no-cache-dir ./psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
19
|
&& pip install -v --timeout 120 --no-cache-dir ./django-polymorphic-3.1.0.tar.gz \
|
|
19
|
# && pip install -v --timeout 120 --no-cache-dir ./django-polymorphic-3.1.0.tar.gz \
|
|
20
|
&& pip install -v --timeout 120 --no-cache-dir ./numpy-1.24.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
20
|
# && pip install -v --timeout 120 --no-cache-dir ./numpy-1.24.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
21
|
&& pip install -v --timeout 120 --no-cache-dir ./bokeh-3.0.3-py3-none-any.whl\
|
|
21
|
# && pip install -v --timeout 120 --no-cache-dir ./bokeh-3.0.3-py3-none-any.whl\
|
|
22
|
&& pip install -v --timeout 120 --no-cache-dir ./matplotlib-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
22
|
# && pip install -v --timeout 120 --no-cache-dir ./matplotlib-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
23
|
&& pip install -v --timeout 120 --no-cache-dir ./scipy-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
23
|
# && pip install -v --timeout 120 --no-cache-dir ./scipy-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
|
|
24
|
&& pip install -v --timeout 120 --no-cache-dir ./celery-5.2.7.tar.gz \
|
|
24
|
# && pip install -v --timeout 120 --no-cache-dir ./celery-5.2.7.tar.gz \
|
|
25
|
&& pip install -v --timeout 120 --no-cache-dir ./gunicorn-20.1.0-py3-none-any.whl \
|
|
25
|
# && pip install -v --timeout 120 --no-cache-dir ./gunicorn-20.1.0-py3-none-any.whl \
|
|
26
|
&& pip install -v --timeout 120 --no-cache-dir ./requests-2.28.2-py3-none-any.whl \
|
|
26
|
# && pip install -v --timeout 120 --no-cache-dir ./requests-2.28.2-py3-none-any.whl \
|
|
27
|
&& pip install -v --timeout 120 --no-cache-dir ./redis-4.4.2-py3-none-any.whl \
|
|
27
|
# && pip install -v --timeout 120 --no-cache-dir ./redis-4.4.2-py3-none-any.whl \
|
|
28
|
&& pip install -v --timeout 120 --no-cache-dir ./graphene_django-3.0.0-py2.py3-none-any.whl \
|
|
28
|
# && pip install -v --timeout 120 --no-cache-dir ./graphene_django-3.0.0-py2.py3-none-any.whl \
|
|
29
|
&& pip install -v --timeout 120 --no-cache-dir ./channels-4.0.0.tar.gz \
|
|
29
|
# && pip install -v --timeout 120 --no-cache-dir ./channels-4.0.0.tar.gz \
|
|
30
|
&& pip install -v --timeout 120 --no-cache-dir ./daphne-4.0.0.tar.gz \
|
|
30
|
# && pip install -v --timeout 120 --no-cache-dir ./daphne-4.0.0.tar.gz \
|
|
31
|
#&& pip install -v --timeout 120 -r requirements.txt --no-cache-dir \
|
|
31
|
&& pip install -v --timeout 120 -r requirements.txt --no-cache-dir \
|
|
32
|
&& apt-get purge -y --auto-remove gcc g++\
|
|
32
|
&& apt-get purge -y --auto-remove gcc g++\
|
|
33
|
&& rm -rf /var/lib/apt/lists/*
|
|
33
|
&& rm -rf /var/lib/apt/lists/*
|
|
34
|
|
|
34
|
|