Skip to content

Instantly share code, notes, and snippets.

@bashkirtsevich
Last active August 12, 2020 14:48
Show Gist options
  • Save bashkirtsevich/96abc475ca1f923836309fab47f39d3d to your computer and use it in GitHub Desktop.
Save bashkirtsevich/96abc475ca1f923836309fab47f39d3d to your computer and use it in GitHub Desktop.
Docker build from stdin
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