Skip to content

Commit

Permalink
Specify TensorFlow version (2.3.0) in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Schuurmans authored and fkm3 committed Jan 20, 2023
1 parent 86a4a12 commit b5e3a98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ working, the following commands will compile and run the tests.
```
git clone --recursive https://github.com/tensorflow/haskell.git tensorflow-haskell
cd tensorflow-haskell
IMAGE_NAME=tensorflow/haskell:v0
IMAGE_NAME=tensorflow/haskell:2.3.0
docker build -t $IMAGE_NAME docker
# TODO: move the setup step to the docker script.
stack --docker --docker-image=$IMAGE_NAME setup
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Prepare the image with:
# docker build -t tensorflow/haskell:v0 docker
# docker build -t tensorflow/haskell:2.3.0 docker
FROM tensorflow/tensorflow:2.3.0
LABEL maintainer="TensorFlow authors <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion docker/gpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Prepare the image with:
# docker build -t tensorflow/haskell:1.14.0-gpu docker/gpu
# docker build -t tensorflow/haskell:2.3.0-gpu docker/gpu
FROM tensorflow/tensorflow:2.3.0-gpu
LABEL maintainer="TensorFlow authors <[email protected]>"

Expand Down

0 comments on commit b5e3a98

Please sign in to comment.