mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-01-22 16:51:27 +01:00
10 lines
157 B
Bash
Executable File
10 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Enter repo: "
|
|
read REPO
|
|
|
|
sed -i "s#REPO#$REPO#" Dockerfile
|
|
docker build . -t 127.0.0.1:5000/voxelibre-test:latest
|
|
git restore Dockerfile
|
|
|