Skip to content
Snippets Groups Projects
Unverified Commit 431bd3cb authored by Justin Welch's avatar Justin Welch Committed by GitHub
Browse files

Merge pull request #215 from steemit/steemit/lock-pipfile-stable

Steemit/lock pipfile stable
parents 77611fda 485826e4
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ crayons = "*" ...@@ -16,7 +16,7 @@ crayons = "*"
cython = "*" cython = "*"
ipython = "*" ipython = "*"
isort = "*" isort = "*"
jsonschema = "==2.6.0" jsonschema = "*"
jupyter = "*" jupyter = "*"
line-profiler = "*" line-profiler = "*"
mypy = "*" mypy = "*"
...@@ -24,12 +24,12 @@ pre-commit = "*" ...@@ -24,12 +24,12 @@ pre-commit = "*"
progress = "*" progress = "*"
pydevd = "*" pydevd = "*"
pylint = "*" pylint = "*"
pytest = "*" pytest = "==3.10.0"
pytest-asyncio = "*" pytest-asyncio = "==0.9.0"
pytest-console-scripts = "*" pytest-console-scripts = "==0.1.7"
pytest-cov = "*" pytest-cov = "==2.6.0"
pytest-docker = "*" pytest-docker = "==0.6.1"
pytest-mock = "*" pytest-mock = "==1.10.0"
pytest-profiling = "*" pytest-profiling = "*"
pytest-pylint = "*" pytest-pylint = "*"
pytest-sanic = "*" pytest-sanic = "*"
......
echo Build started on `date`
export IMAGE_TAG=`git ls-remote --heads origin | grep $(git rev-parse HEAD) | cut -d / -f 3`
if [ "$IMAGE_TAG" = "master" ] ; then export IMAGE_TAG=latest ; fi
export REPO_PATH=`git rev-parse --show-toplevel`
export REPO_NAME=`basename $REPO_PATH`
export IMAGE_REPO_NAME="steemit/$REPO_NAME"
export SOURCE_COMMIT=`git rev-parse HEAD`
echo Building branch $IMAGE_TAG from $IMAGE_REPO_NAME
docker build . -t $IMAGE_REPO_NAME:$IMAGE_TAG --build-arg SOURCE_COMMIT="${SOURCE_COMMIT}" --build-arg DOCKER_TAG="${IMAGE_TAG}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment