mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
8 lines
215 B
Bash
8 lines
215 B
Bash
|
#!/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
|
||
|
|
||
|
# Execute the CMD
|
||
|
exec "$@"
|