File size: 455 Bytes
c6e7238 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM gcr.io/deeplearning-platform-release/tf-cpu.1-15
WORKDIR /neogpt
# Make RUN commands use `bash --login`:
SHELL ["/bin/bash", "--login", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && apt-get install tmux -y
RUN conda install gcc_linux-64 gxx_linux-64 -y
ADD requirements.txt .
RUN pip install -r requirements.txt
RUN apt-get install screen htop -y
RUN python -m pip install tensorboard==1.15 cloud_tpu_profiler==1.15
CMD tmux |