mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-25 06:49:31 +01:00
10 lines
102 B
Bash
Executable File
10 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# run webkit instance
|
|
#
|
|
|
|
set -e
|
|
cd /usr/local/lib/webkit
|
|
exec phantomjs server.js "$@"
|
|
|