0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/.docker/development.entrypoint.sh

10 lines
245 B
Bash
Raw Normal View History

#!/bin/bash
# Mounting local code into the container overwrites the `node_modules` directories
# so we need to install dependencies again
yarn install --frozen-lockfile --prefer-offline
yarn nx run-many -t build:ts
# Execute the CMD
exec "$@"