mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 01:02:50 +08:00

* breaking upgrade base build image to net5.0 * add make and build tools to image * fix code broken after net5.0 upgrade * fix warnings * fix tests and line endings * upgrade dotnet test and coverages packages * update circle build image * removed rafty and updated more packages * bring back develop * rename authorisation to authorization
8 lines
330 B
Bash
Executable File
8 lines
330 B
Bash
Executable File
# this script build the ocelot docker file
|
|
version=0.0.3
|
|
docker build -t mijitt0m/ocelot-build -f Dockerfile.base .
|
|
echo $DOCKER_PASS | docker login -u $DOCKER_USER --password-stdin
|
|
docker tag mijitt0m/ocelot-build mijitt0m/ocelot-build:$version
|
|
docker push mijitt0m/ocelot-build:latest
|
|
docker push mijitt0m/ocelot-build:$version
|