Skip to content

Commit

Permalink
Add sync command to download stage
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Kvashenkin committed May 20, 2019
1 parent 73e4e17 commit ec9698b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /tmp

RUN apk --no-cache add bash curl grep \
&& chmod +x /download.sh \
&& /download.sh \
&& sync; /download.sh \
&& for file in *.tar.gz; do tar -zxf "$file"; done \
&& rm -rf *.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion crs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /tmp

RUN apk --no-cache add bash curl grep \
&& chmod +x /download.sh \
&& /download.sh \
&& sync; /download.sh \
&& for file in *.tar.gz; do tar -zxf "$file"; done \
&& rm -rf *.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /tmp

RUN apk --no-cache add bash curl grep \
&& chmod +x /download.sh \
&& /download.sh \
&& sync; /download.sh \
&& for file in *.tar.gz; do tar -zxf "$file"; done \
&& rm -rf *.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile.i386
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /tmp

RUN apk --no-cache add bash curl grep \
&& chmod +x /download.sh \
&& /download.sh \
&& sync; /download.sh \
&& for file in *.tar.gz; do tar -zxf "$file"; done \
&& rm -rf *.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion thin-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /tmp

RUN apk --no-cache add bash curl grep \
&& chmod +x /download.sh \
&& /download.sh \
&& sync; /download.sh \
&& for file in *.tar.gz; do tar -zxf "$file"; done \
&& rm -rf *.tar.gz

Expand Down

0 comments on commit ec9698b

Please sign in to comment.