skip to Main Content

not able to install packages with requirements.txt in docker

i am creating image with below dockerfile: FROM python:3.9 WORKDIR /usr/app/ ADD ./requirements.txt /usr/app/requirements.txt RUN pip install --upgrade pip && hash pip && pip install -r requirements.txt Add . /usr/app/ ENTRYPOINT ["python"] CMD ["app.py"] requirements file: altair==4.1.0 cmdstanpy==1.0.8 h5py==3.1.0 keras-preprocessing==1.1.2…

VIEW QUESTION

Problem when download Python package and then install from .whl files – Ubuntu

I want to download Python package pipy.org and move them to another machine and finally install that packages with downloaded .whl files in that machine This is requirements.txt file: amqp==5.1.1 anytree==2.8.0 asgiref==3.5.2 async-timeout==4.0.2 attrs==22.1.0 autobahn==22.7.1 Automat==22.10.0 beautifulsoup4==4.11.1 billiard==3.6.4.0 celery==5.2.7 certifi==2022.9.24…

VIEW QUESTION
Back To Top
Search