mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
.github
.vscode
dev
api-gen
build
exec
npm
serve
version
src
.babelrc
.editorconfig
.eslintrc
.gitattributes
.gitignore
.prettierrc
Dockerfile
LICENSE
README.md
package-lock.json
package.json
tsconfig.json
vue.config.js
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:16-buster-slim
|