Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aagnone3/efb8affaedb85926127fbebee5d69b4c to your computer and use it in GitHub Desktop.
Save aagnone3/efb8affaedb85926127fbebee5d69b4c to your computer and use it in GitHub Desktop.
# base image
FROM tensorflow/magenta
# set partition and working directory
VOLUME /opt
WORKDIR /opt
# install base system packages
RUN apt-get update && apt-get install -y \
vim \
portaudio19-dev
# install python libraries
COPY requirements.txt /tmp/requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /tmp/requirements.txt
# container entry point
ENTRYPOINT ["/bin/bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment