Last active
August 12, 2020 14:48
-
-
Save bashkirtsevich/96abc475ca1f923836309fab47f39d3d to your computer and use it in GitHub Desktop.
Docker build from stdin
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
docker build -t imagename -<<EOF | |
FROM python:3.8.3 | |
RUN apt-get -y update && \ | |
apt-get -y upgrade && \ | |
apt-get -y install swig pkg-config libboost-dev libsndfile1-dev libboost-all-dev cmake protobuf-compiler libprotoc-dev | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment