Re: Django REST in Docker

2019-04-10 Thread Shubham Joshi
; it (docker run pip freeze). This will tell you of all the > packages you nee are there. > > Eric > > -- > *From:* django-users@googlegroups.com on > behalf of Shubham Joshi > *Sent:* Tuesday, April 9, 2019 10:54 > *To:* django-users@googlegroups.com >

Re: Django REST in Docker

2019-04-09 Thread PASCUAL Eric
_ From: django-users@googlegroups.com on behalf of Shubham Joshi Sent: Tuesday, April 9, 2019 10:54 To: django-users@googlegroups.com Subject: Re: Django REST in Docker FROM python:3 ENV PYTHONUNBUFFERED 1 RUN mkdir /code WORKDIR /code COPY requirements.txt /code/ RUN pip install -r requir

Re: Django REST in Docker

2019-04-09 Thread Alessandro Madruga Correia
ic >> >> -- >> *From:* django-users@googlegroups.com on >> behalf of Shubham Joshi >> *Sent:* Tuesday, April 9, 2019 07:30 >> *To:* Django users >> *Subject:* Django REST in Docker >> >> I had set up djan

Re: Django REST in Docker

2019-04-09 Thread Shubham Joshi
f there would not > be some other problem ? > > Eric > > -- > *From:* django-users@googlegroups.com on > behalf of Shubham Joshi > *Sent:* Tuesday, April 9, 2019 07:30 > *To:* Django users > *Subject:* Django REST in Docker > > I had s

Re: Django REST in Docker

2019-04-09 Thread PASCUAL Eric
. Could you show the content of your Dockerfile to check if there would not be some other problem ? Eric From: django-users@googlegroups.com on behalf of Shubham Joshi Sent: Tuesday, April 9, 2019 07:30 To: Django users Subject: Django REST in Docker I had set

Django REST in Docker

2019-04-08 Thread Shubham Joshi
I had set up django in Docker, now I am trying to install pip packages , like rest_framework and added in installed apps too. but it throws ModuleNotFoundError: No module named 'rest_framework' , whats the generic way of installing the pip packages in existing dockerized django project -- You