neko/client/dev/npm
2024-09-08 11:52:47 +02:00

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 "$@"