mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-03 07:44:00 +01:00
11 lines
254 B
Bash
Executable File
11 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source tools.sh
|
|
setAppFromShellName $0
|
|
|
|
USER_UID=`id | sed 's/.*uid=\(....\).*/\1/g'`
|
|
USER_GID=`id | sed 's/.*gid=\(....\).*/\1/g'`
|
|
|
|
docker build --build-arg UID=$USER_UID --build-arg GID=$USER_GID --tag womo$APP --file Dockerfile_$APP .
|
|
|