mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
4e693ae4a3
* upgrade to nodejs 18. * npm update. * upgrade linter. * upgrade axios. * upgrade saas loader. * upgrade typescript.
11 lines
222 B
Bash
Executable File
11 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
cd "$(dirname "$0")"
|
|
|
|
# start component watch
|
|
docker run --rm -it \
|
|
--user "$(id -u):$(id -g)" \
|
|
--volume "${PWD}/../:/app" \
|
|
--entrypoint="/bin/bash" \
|
|
--workdir="/app" \
|
|
node:18-buster-slim
|