Renamed some docker files to Dockerfile

This makes it simpler to manage by using the default name. It also helps
my editor to recognise the file and highlight it properly.
This commit is contained in:
2018-03-23 12:42:56 +01:00
parent 1fca473257
commit 7cb4b37ae2
6 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Uses --no-cache to always get the latest upstream (security) upgrades. # Uses --no-cache to always get the latest upstream (security) upgrades.
exec docker build --no-cache "$@" -t pillar_base -f base.docker . exec docker build --no-cache "$@" -t pillar_base .

View File

@@ -22,7 +22,7 @@ fi
echo "Wheelhouse is $WHEELHOUSE" echo "Wheelhouse is $WHEELHOUSE"
mkdir -p "$WHEELHOUSE" mkdir -p "$WHEELHOUSE"
docker build -t pillar_wheelbuilder -f build.docker . docker build -t pillar_wheelbuilder .
GID=$(id -g) GID=$(id -g)
docker run --rm -i \ docker run --rm -i \

View File

@@ -1,5 +1,5 @@
#!/bin/bash -e #!/bin/bash -e
docker build -t armadillica/blender_cloud:latest -f run.docker . docker build -t armadillica/blender_cloud:latest .
echo "Done, built armadillica/blender_cloud:latest" echo "Done, built armadillica/blender_cloud:latest"