Skip to content

Commit 44fdcdc

Browse files
authored
Merge pull request #12237 from ethereum/removeInstallDepsScript
Remove install_deps script.
2 parents 7c8ad7a + a0dee79 commit 44fdcdc

File tree

3 files changed

+3
-415
lines changed

3 files changed

+3
-415
lines changed

docs/installing-solidity.rst

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -411,24 +411,13 @@ in Visual Studio 2019 Build Tools or Visual Studio 2019:
411411
.. _Visual Studio 2019: https://www.visualstudio.com/vs/
412412
.. _Visual Studio 2019 Build Tools: https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019
413413

414-
Dependencies Helper Script
415-
--------------------------
416-
417-
We have a helper script which you can use to install all required external dependencies
418-
on macOS, Windows and on numerous Linux distros.
419-
420-
.. code-block:: bash
421-
422-
./scripts/install_deps.sh
423-
424-
Or, on Windows:
414+
We have a helper script which you can use to install all required external dependencies:
425415

426416
.. code-block:: bat
427417
428418
scripts\install_deps.ps1
429419
430-
Note that the latter command will install ``boost`` and ``cmake`` to the ``deps`` subdirectory, while the former command
431-
will attempt to install the dependencies globally.
420+
This will install ``boost`` and ``cmake`` to the ``deps`` subdirectory.
432421

433422
Clone the Repository
434423
--------------------

scripts/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ MAINTAINER chriseth <[email protected]>
66
WORKDIR /solidity
77

88
# Build dependencies
9-
ADD /scripts/install_deps.sh /solidity/scripts/install_deps.sh
10-
RUN ./scripts/install_deps.sh
9+
RUN apk update && apk add boost-dev boost-static build-base cmake git
1110

1211
#Copy working directory on travis to the image
1312
COPY / $WORKDIR

0 commit comments

Comments
 (0)