Skip to content

Commit

Permalink
Merge pull request projectcaluma#166 from sliverc/quiet_wget
Browse files Browse the repository at this point in the history
Suppress wget from writing to stderr
  • Loading branch information
winged authored Dec 28, 2018
2 parents 11cacba + f073e17 commit d2f93f6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
FROM python:3.6


# TODO: do not write to stderr
RUN wget https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -P /usr/local/bin \
RUN wget -q https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -P /usr/local/bin \
&& chmod +x /usr/local/bin/wait-for-it.sh \
&& mkdir -p /app \
&& groupadd -r caluma -g 901 && useradd -u 901 -r -g 901 caluma
Expand Down

0 comments on commit d2f93f6

Please sign in to comment.