prisma-heroku
prisma-heroku copied to clipboard
Permission denied
First of all, thank you very much for this repo! Saved my day.
I did, however, have to change the Dockerfile to
ARG tag
FROM prismagraphql/prisma:$tag
COPY ./prerun_hook.sh /app/prerun_hook.sh
RUN chmod a+x /app/start.sh
RUN chmod a+x /app/prerun_hook.sh
CMD bash /app/start.sh
as I was getting Permission denied
errors when it tried to run the shell scripts.
Thanks, will take a look.
Is this still an issue?