mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-13 07:25:40 +00:00
4 lines
197 B
Bash
4 lines
197 B
Bash
#!/bin/sh
|
|
if [ ! -d "node_modules" ]; then apk add --no-cache --update python3 py-pip make gcc; ln -s /usr/bin/python3 /usr/bin/python; npm run setup; fi
|
|
if [ ! -d 'dist' ]; then npm run build; fi
|