Dockerfile 233 Bytes
Newer Older
zhanggzh's avatar
zhanggzh committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ARG VERSION

FROM tensorflow/tensorflow:${VERSION}

RUN apt-get update && apt-get install -y \
  locales \
  && rm -rf /var/lib/apt/lists/*

RUN pip install \
  black \
  flake8 \
  isort \
  pytest \
  regex \
  tensorflow_datasets