Fixed wget call

Shell run wget as daemon when it encounter the first '&' making docker build fail. Putting quotes around fixes it.
This commit is contained in:
Timothé 2020-06-06 00:41:13 +02:00 committed by GitHub
parent c5f8465fb7
commit b8e239cc40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM nginx:alpine
RUN apk update && apk add --no-progress -q wget unzip RUN apk update && apk add --no-progress -q wget unzip
RUN wget -O akaunting.zip https://akaunting.com/download.php?version=latest&utm_source=docker&utm_campaign=developers RUN wget -O akaunting.zip "https://akaunting.com/download.php?version=latest&utm_source=docker&utm_campaign=developers"
RUN mkdir -p /var/www/akaunting RUN mkdir -p /var/www/akaunting
RUN unzip akaunting.zip -d /var/www/akaunting RUN unzip akaunting.zip -d /var/www/akaunting
RUN rm akaunting.zip RUN rm akaunting.zip