Skip to content
Snippets Groups Projects
Unverified Commit 62d957f5 authored by Manish R Jain's avatar Manish R Jain
Browse files

Merge tag 'v1.0.6' into release/v1.0.6

Dgraph v1.0.6
parents 48ae17ff 5caa866c
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ and this project will adhere to [Semantic Versioning](http://semver.org/spec/v2.
* Fix bugs in snapshot move, refactor code and improve performance significantly. #2440, #2442
* Add error handling to GetNoStore. Fixes #2373.
* Fix bugs in Bulk loader. #2449
* Posting List and Raft bug fixes. #2457
### Changed
......@@ -35,7 +36,7 @@ and this project will adhere to [Semantic Versioning](http://semver.org/spec/v2.
* Trace how node.Run loop performs.
* Allow tweaking Badger options.
*Warning: This change modifies some flag names. In particular, Badger options
**Note:** This change modifies some flag names. In particular, Badger options
are now exposed via flags named with `--badger.` prefix.
## [1.0.5] - 2018-04-20
......
# This file is used to add the nightly Dgraph binaries and assets to Dgraph base
# image.
# Command to build - docker build -t dgraph/dgraph:nightly .
# This gets built as part of release.sh. Must be run from /tmp/build, with the linux binaries
# already built and placed there.
FROM ubuntu:16.04
FROM ubuntu:latest
MAINTAINER Dgraph Labs <contact@dgraph.io>
RUN mkdir /dgraph \
&& apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl \
&& rm -rf /var/lib/apt/lists/*
ADD dgraph-build /usr/local/bin
ADD linux /usr/local/bin
EXPOSE 8080
EXPOSE 9080
RUN mkdir /dgraph
WORKDIR /dgraph
CMD ["dgraph"] # Shows the dgraph version and commands available.
......@@ -12,6 +12,8 @@ rm -Rf $GOPATH
mkdir $GOPATH
TAG=$1
# DO NOT change the /tmp/build directory, because Dockerfile also picks up binaries from there.
TMP="/tmp/build"
rm -Rf $TMP
mkdir $TMP
......@@ -134,6 +136,14 @@ createSum () {
createSum darwin
createSum linux
# Create Docker image.
cp $basedir/dgraph/contrib/Dockerfile $TMP
pushd $TMP
docker build -t dgraph/dgraph:$TAG .
popd
rm $TMP/Dockerfile
# Create the tars and delete the binaries.
createTar () {
os=$1
echo "Creating tar for $os"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment