Include Docker image devshell in project
I created a docker fredapi image for my own use, but if you'd like to incorporate the Dockerfile into this project please feel free to. Or to test out the image just try out the devshell: docker run -it erezbinyamin/fredapi python
FROM python:3.6
RUN apt-get update
RUN git clone https://github.com/mortada/fredapi.git \
&& cd fredapi \
&& pip install .
Include Docker image devshell in project
I created a docker fredapi image for my own use, but if you'd like to incorporate the Dockerfile into this project please feel free to. Or to test out the image just try out the devshell:
docker run -it erezbinyamin/fredapi python