move devs to client & server.

This commit is contained in:
Miroslav Šedivý 2024-09-08 11:52:47 +02:00
parent b617c5cc32
commit 3d7be663ec
10 changed files with 63 additions and 113 deletions

10
client/dev/npm Executable file
View file

@ -0,0 +1,10 @@
#!/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 "$@"