From 6b98dd6055672527512fb9f90a0bad5593f43bb9 Mon Sep 17 00:00:00 2001 From: thisfro Date: Sat, 19 Jun 2021 12:43:34 +0200 Subject: [PATCH] Add quotes around curl argument --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a01adfa..27c12ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,8 +26,8 @@ RUN yarn install && \ yarn build # Pull translation -RUN curl https://localise.biz/api/export/locale/en.yml?key=RCrByb141Z9P3QjMhWgHrqRrdxu9x-Rro&format=symfony > translations/messages.en.yml -RUN curl https://localise.biz/api/export/locale/de.yml?key=RCrByb141Z9P3QjMhWgHrqRrdxu9x-Rro&format=symfony > translations/messages.de.yml +RUN curl "https://localise.biz/api/export/locale/en.yml?key=RCrByb141Z9P3QjMhWgHrqRrdxu9x-Rro&format=symfony" > translations/messages.en.yml +RUN curl "https://localise.biz/api/export/locale/de.yml?key=RCrByb141Z9P3QjMhWgHrqRrdxu9x-Rro&format=symfony" > translations/messages.de.yml RUN cp .env.staging .env