fredapi icon indicating copy to clipboard operation
fredapi copied to clipboard

Docker devshell

Open ErezBinyamin opened this issue 9 months ago • 1 comments

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 .

ErezBinyamin avatar May 15 '24 15:05 ErezBinyamin