examples/tensorflow_cuj/text_classification/Dockerfile

7 lines
158 B
Docker

FROM python:3.7
COPY . /app/
RUN pip3 install --no-cache-dir -r /app/requirements.txt
ENTRYPOINT ["python3", "/app/distributed_text_classification_rnn.py"]