Skip to content

Commit

Permalink
add -y flag to apt update in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
kantai authored and jcnelson committed Sep 29, 2017
1 parent 0824399 commit a83f868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:xenial
WORKDIR /src/blockstack

# Install dependancies from apt
RUN apt-get update
RUN apt-get -y update
RUN apt-get install -y python-pip python-dev libssl-dev libffi-dev rng-tools libgmp3-dev lsof

# Copy all files from the repo into the container
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/deployment/docker/Dockerfile.tests
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:xenial

# Install dependancies from apt
RUN apt-get update
RUN apt-get -y update
RUN apt-get install -y python-pip python-dev libssl-dev libffi-dev rng-tools libgmp3-dev lsof

# Install Bitcoin
Expand Down

0 comments on commit a83f868

Please sign in to comment.