mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
10 lines
205 B
Bash
Executable file
10 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
cd "$(dirname "$0")"
|
|
|
|
# npm
|
|
docker run --rm -it \
|
|
--user "$(id -u):$(id -g)" \
|
|
--volume "${PWD}/../:/app" \
|
|
--entrypoint="npm" \
|
|
--workdir="/app" \
|
|
node:18-bullseye-slim "$@"
|