mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
13 lines
263 B
Bash
Executable File
13 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
cd "$(dirname "$0")"
|
|
|
|
APP_PATH="$(realpath ../)"
|
|
|
|
# start component watch
|
|
docker run --rm -it \
|
|
--user "$(id -u):$(id -g)" \
|
|
--volume "$APP_PATH:$APP_PATH" \
|
|
--entrypoint="npm" \
|
|
--workdir="$APP_PATH" \
|
|
node:18-buster-slim run build
|