ayushkhare12

Untitled

Aug 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. # Install packages
  2. apk add --no-cache libcurl
  3.  
  4. # Needed for pycurl
  5. ENV PYCURL_SSL_LIBRARY=openssl
  6.  
  7. # Install packages only needed for building, install and clean on a single layer
  8. RUN apk add --no-cache --virtual .build-dependencies build-base curl-dev \
  9.     && pip install pycurl \
  10.     && apk del .build-dependencies
Add Comment
Please, Sign In to add comment