Files
docker-stacks/tensorflow-notebook/Dockerfile
Ayaz Salikhov 8027d13f82 Temporarily pin flatbuffers version (#1907)
* Temporarily pin flatbuffers version

* Update Dockerfile
2023-05-28 11:39:46 +04:00

21 lines
653 B
Docker

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
ARG OWNER=jupyter
ARG BASE_CONTAINER=$OWNER/scipy-notebook
FROM $BASE_CONTAINER
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install Tensorflow
RUN mamba install --yes \
# Temporary pin flatbuffers version
'flatbuffers==23.3.3' \
'tensorflow' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"