4f9d496dfe
It's very surprising to get some external copy of websockify when you are building an image in your local websockify source tree. Make sure we are using the local copy of everything.
6 lines
137 B
Bash
Executable File
6 lines
137 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e -x
|
|
cd "$(dirname "$0")"
|
|
(cd .. && python3 setup.py sdist --dist-dir docker/)
|
|
docker build -t novnc/websockify .
|