FROM tensorflow/tensorflow:2.5.0 ENV PASTEY_WORKERS=2 ENV PASTEY_THREADS=4 ENV PASTEY_LISTEN_PORT=5000 RUN pip install gunicorn COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt COPY . /app/ WORKDIR /app ENTRYPOINT ["sh", "-c", "gunicorn -w $PASTEY_WORKERS -t $PASTEY_THREADS -b :$PASTEY_LISTEN_PORT app:app"] EXPOSE $PASTEY_LISTEN_PORT