aiproject / Dockerfile
jbraha's picture
begin work on app.py
33dbef6
raw
history blame
No virus
157 Bytes
FROM tensorflow/tensorflow
WORKDIR /app
# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
COPY . /app
#CMD