Files
server/scripts/docker-entrypoint.sh
2022-09-07 08:53:13 +02:00

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