This file contains hidden or 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
FROM tensorflow/tensorflow:2.9.1 | |
LABEL description="Magenta 2.14.0 on Tensorflow 2.9.1" | |
USER root | |
RUN apt-get update --fix-missing && \ | |
apt-get -y install expect build-essential libasound2-dev libjack-dev git-core ffmpeg vim | |
ENV MC_REMOTE="https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh" | |
ENV MC_LOCAL="/tmp/miniconda-install.sh" | |
ENV CONDA_PATH="/root/miniconda3" |
This file contains hidden or 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
#!/bin/bash | |
# Print a message and kill the script. | |
die() { | |
echo "$@" 1>&2 | |
exit 1 | |
} | |
# Finds the top of the repo. | |
find_git_repo_top() { |
OlderNewer