summary refs log tree commit diff
path: root/scripts/docker-entrypoint.sh
blob: ae1ab6eb5843748b36b51973030730b3a0d7f6af (plain) (blame)
1
2
3
#!/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