ayushkhare12

Docker Tensorflow Flask

Sep 8th, 2019
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. FROM ubuntu:latest
  2.  
  3. ENV DEBIAN_FRONTEND=noninteractive
  4.  
  5. RUN apt-get update && apt-get install -y --no-install-recommends build-essential r-base r-cran-randomforest python3.6 python3-pip python3-setuptools python3-dev
  6.  
  7. WORKDIR /app
  8.  
  9. COPY requirements.txt /app/requirements.txt
  10.  
  11. RUN pip3 install tensorflow
  12.  
  13. RUN pip3 install flask
  14.  
  15.  
  16.  
  17.  
  18.  
  19. COPY . /app
Add Comment
Please, Sign In to add comment