doc.silverstripe.org/docker/entrypoint.sh

10 lines
89 B
Bash

#!/bin/bash
cd /app;
if [[ ! -d "/app/node_modules" ]] ; then
yarn;
fi;
gatsby $@