We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1572e87 commit b0ff959Copy full SHA for b0ff959
1 file changed
docker/entrypoint.sh
@@ -25,7 +25,7 @@ NODE_ENV=development
25
if [ ! -d "/app/recipes/.git" ]; # When we mount an existing volume (ferdium-recipes-vol:/app/recipes) if this is only /app/recipes it is always true
26
then
27
echo '**** Generating recipes for first run ****'
28
- git clone --branch main https://github.com/ferdium/ferdium-recipes recipes
+ git clone --depth 1 --branch main https://github.com/ferdium/ferdium-recipes recipes
29
else
30
echo '**** Updating recipes ****'
31
chown -R root /app/recipes # Fixes ownership problem when doing git pull -r
0 commit comments