Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
burrow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hang Yu
burrow
Commits
90626504
Unverified
Commit
90626504
authored
7 years ago
by
Silas Davis
Browse files
Options
Downloads
Patches
Plain Diff
Use arg in dockerfile and remove volume
parent
401d312d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.circleci/config.yml
+5
-6
5 additions, 6 deletions
.circleci/config.yml
CHANGELOG.md
+3
-0
3 additions, 0 deletions
CHANGELOG.md
Dockerfile
+1
-5
1 addition, 5 deletions
Dockerfile
with
9 additions
and
11 deletions
.circleci/config.yml
+
5
−
6
View file @
90626504
...
...
@@ -59,10 +59,10 @@ workflows:
test_and_release
:
jobs
:
-
checkout_code
:
# Rather annoyingly we need t
his boilerplate
on all transitive
# Rather annoyingly we need t
o include tags_filters
on all transitive
# dependencies if we want the deploy job to build against a version
# tag.
#
Also note
jobs build against all branches by default
#
In contract
jobs build against all branches by default
filters
:
<<
:
*tags_filters
-
test
:
...
...
@@ -82,11 +82,10 @@ workflows:
-
test
-
test_integration
filters
:
# tags filters and branch filters are applied disjunctively, so we
# will still build tags not on develop (i.e. including tagged
# releases on master that we specifically want to build)
<<
:
*tags_filters
branches
:
# Although we seem to exclude the master branch below, since
# matching on tags is independent we will still build tags that
# happen to point to a commit on master
# We push dev pre-release images for every commit on develop
only
:
develop
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
3
−
0
View file @
90626504
# burrow changelog
## v0.17.1
Minor tweaks to docker build file
## v0.17.0
This is a service release with some significant ethereum/solidity compatibility improvements and new logging features. It includes:
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
5
View file @
90626504
...
...
@@ -5,7 +5,7 @@ MAINTAINER Monax <support@monax.io>
RUN
apk add
--no-cache
--update
git
RUN
go get github.com/Masterminds/glide
ENV
REPO
$GOPATH/src/github.com/hyperledger/burrow
ARG
REPO
=
$GOPATH/src/github.com/hyperledger/burrow
COPY
. $REPO
WORKDIR
$REPO
RUN
glide
install
...
...
@@ -17,13 +17,9 @@ RUN go build --ldflags '-extldflags "-static"' -o bin/burrow-client ./client/cmd
# This will be our base container image
FROM
alpine:3.6
# There does not appear to be a way to share environment variables between stages
ENV
REPO /go/src/github.com/hyperledger/burrow
ENV
USER monax
ENV
MONAX_PATH /home/$USER/.monax
RUN
addgroup
-g
101
-S
$USER
&&
adduser
-S
-D
-u
1000
$USER
$USER
VOLUME
$MONAX_PATH
WORKDIR
$MONAX_PATH
USER
$USER:$USER
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment