We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1fe570 commit a06a8e0Copy full SHA for a06a8e0
docker/Makefile
@@ -6,5 +6,5 @@ all: build
6
.PHONY: build
7
build:
8
docker build \
9
- --tag="opensips/pyhton-opensips:$(OPENSIPS_DOCKER_TAG)" \
+ --tag="opensips/python-opensips:$(OPENSIPS_DOCKER_TAG)" \
10
.
docker/run.sh
@@ -3,12 +3,13 @@
3
CMD=$1
4
shift
5
-if [[ CMD == *.py ]]; then
+if [[ $CMD == *.py ]]; then
TOOL=python3
-elif [[ CMD == *.sh ]]; then
+elif [[ $CMD == *.sh ]]; then
TOOL=bash
else
11
TOOL=opensips-mi
12
fi
13
14
exec $TOOL $CMD "$@"
15
+
0 commit comments