mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-01 00:29:42 +01:00
c66c912c32
* Tensorflow 2.3.0 building and passing tests. * Added einsum and test. * Added ByteString as a possible argument to a function. * Support more data types for Adam. * Move to later version of LTS on stackage. * Added a wrapper module for convolution functions. * Update ci build to use a later version of stack. * Removed a deprecated import in GradientTest.
43 lines
1.8 KiB
Docker
43 lines
1.8 KiB
Docker
# Image for launching TensorFlow Haskell tests. Unlike the
|
|
# development image in docker/Dockerfile, this one doesn't require
|
|
# stack to be installed on the host. This comes at the expense of
|
|
# flexibility.
|
|
|
|
FROM tensorflow/tensorflow:2.3.0
|
|
LABEL maintainer="TensorFlow authors <tensorflow-haskell@googlegroups.com>"
|
|
|
|
# The build context directory is the top of the tensorflow-haskell
|
|
# tree.
|
|
ADD . /tfhs
|
|
WORKDIR /tfhs
|
|
|
|
RUN \
|
|
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 575159689BEFB442 && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
# Required by snappy-frames dependency.
|
|
libsnappy-dev \
|
|
# Avoids /usr/bin/ld: cannot find -ltinfo
|
|
libncurses5-dev \
|
|
# Makes stack viable in the container
|
|
libgmp-dev \
|
|
libcurl3-dev \
|
|
zlib1g-dev \
|
|
# For fetching dependencies
|
|
curl \
|
|
unzip \
|
|
# Required for tcp connections by stack (See: https://github.com/tensorflow/haskell/issues/182)
|
|
netbase \
|
|
&& \
|
|
# Installs stack.
|
|
curl -O -L https://github.com/commercialhaskell/stack/releases/download/v2.5.1/stack-2.5.1-linux-x86_64.tar.gz && \
|
|
tar zxf stack-2.5.1-linux-x86_64.tar.gz -C /usr/local/bin stack-2.5.1-linux-x86_64/stack --strip 1 && \
|
|
# Installs protoc and the libraries.
|
|
curl -O -L https://github.com/google/protobuf/releases/download/v3.13.0/protoc-3.13.0-linux-x86_64.zip && \
|
|
unzip -d /usr/local protoc-3.13.0-linux-x86_64.zip bin/protoc && \
|
|
chmod 755 /usr/local/bin/protoc && \
|
|
curl -O https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && \
|
|
tar zxf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz -C /usr/local && \
|
|
ldconfig && \
|
|
stack setup && \
|
|
stack test --only-dependencies
|