Skip to content

Commit

Permalink
adding fstar-version.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
gugavaro committed Jul 30, 2018
1 parent d3474d1 commit ff810f3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .docker/build/fstar-version.json
@@ -0,0 +1,4 @@
{
"branch" : "stable",
"commit" : "cc8247b68d9a"
}
9 changes: 6 additions & 3 deletions .docker/build/linux/Dockerfile
@@ -1,11 +1,14 @@
# hacl build container

# Define here what FStar base container image hacl build should use.
# Define on fstar-version.json what FStar base container image
# hacl build should use.
# By default it always look for the latest FStar container available
# In case you would like to reference a specific commit,
# replace latest with the commit id from github using 12 characters.
# i.e.: FROM fstar:cbac9b43ab46
FROM fstar:latest
# Latest can only be used with branch master,
# for any other branch please use the specific commit id on the config file.
ARG COMMITID
FROM fstar:${COMMITID}

ARG BUILDLOGFILE
ARG MAXTHREADS
Expand Down

0 comments on commit ff810f3

Please sign in to comment.