File size: 157 Bytes
d659c31
 
 
 
 
33dbef6
 
d659c31
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM tensorflow/tensorflow

WORKDIR /app

# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt

COPY . /app

#CMD