etscrivner / rbsecp256k1

Compiled Ruby wrapper around libsecp256k1 for secp256k1 ECDSA.
The Unlicense
19 stars 13 forks source link

Alpine Equivalent of the packages #60

Closed samkahchiin closed 1 year ago

samkahchiin commented 1 year ago

I am using alpine in my dockerfile and got the errors below:

  ERROR: unable to select packages:
  build-essential (no such package):
    required by: world[build-essential]
  libgmp-dev (no such package):
    required by: world[libgmp-dev]
  libssl-dev (no such package):
    required by: world[libssl-dev]
  pkg-config (no such package):
    required by: world[pkg-config]
  python-dev (no such package):
    required by: world[python-dev]

when running

sudo apt-get install build-essential automake pkg-config libtool \
  libffi-dev libssl-dev libgmp-dev python-dev

Do you know what are the alpine equivalent of the below packages?

q9f commented 1 year ago

try

apk add --update alpine-sdk build-base automake libtool libffi-dev gmp-dev openssl-dev pkgconfig python
etscrivner commented 1 year ago

Closing this issue for lack of updates from the reporter. Please let me know if you have tried any of the recommended advice or solved your issue. If it persists I am happy to re-open.