Created
June 17, 2019 08:17
-
-
Save stchris/68686875b7c9290040fc907d60473aa7 to your computer and use it in GitHub Desktop.
Alpine Linux Dockerfile to install magic-wormhole
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This installs https://github.com/warner/magic-wormhole (a nifty | |
# utility to securely send stuff from one computer to another) on | |
# Alpine Linux | |
FROM alpine | |
RUN apk update && apk add build-base python3-dev libffi-dev openssl-dev && pip3 install magic-wormhole |
I found I had to run pip install --upgrade pip
after running apk add py3-pip
to get it to work.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now pip3 doesn't install with python3-dev. You have to install it manually as
apk add py3-pip
Thanks for the install instruction, Magic-Wormhole is working flawlessly in Alpine.