File size: 569 Bytes
07b6f54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# FROM python:3.8-slim-buster
# COPY . /app
# WORKDIR /app
# RUN apt-get update
# RUN pip3 install -r requirements.txt
# EXPOSE 5000
# ENTRYPOINT [ "python" ]
# CMD [ "application.py" ]
FROM tensorflow/tensorflow

# Copy local code to the container image.
COPY . /app
WORKDIR /app

# Install production dependencies.
RUN pip3 install -r requirements.txt

ENV PORT 5000
EXPOSE 5000

ENTRYPOINT [ "python" ]
CMD [ "application.py" ]

# webserver, with one worker process and 8 threads.
# CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --threads 8 --timeout 0 main:app