mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "### Building frontend"
|
|
sudo docker run --rm \
|
|
-v "$(pwd)":/app \
|
|
-w /app/phishingclub/frontend \
|
|
node:alpine \
|
|
sh -c "npm ci && npm run build-production"
|