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
(v1) marcelobarbosa@Marcelos-MacBook-Pro clarifai % DO_MACHINE_INSTALL=true $CLARIFAI_ROOT/utils/install.sh | |
... | |
+ for func in '"$@"' | |
+ echo ============================================================================== | |
============================================================================== | |
+ echo 'starting install_amazon.sh setup_virtualenv with DO_MACHINE_INSTALL=true' | |
starting install_amazon.sh setup_virtualenv with DO_MACHINE_INSTALL=true | |
+ echo ============================================================================== | |
============================================================================== | |
+ setup_virtualenv |
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
# `python-base` sets up all our shared environment variables | |
FROM python:3.8.1-slim as python-base | |
# python | |
ENV PYTHONUNBUFFERED=1 \ | |
# prevents python creating .pyc files | |
PYTHONDONTWRITEBYTECODE=1 \ | |
\ | |
# pip | |
PIP_NO_CACHE_DIR=off \ |
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
# `python-base` sets up all our shared environment variables | |
FROM python:3.8.1-slim as python-base | |
# python | |
ENV PYTHONUNBUFFERED=1 \ | |
# prevents python creating .pyc files | |
PYTHONDONTWRITEBYTECODE=1 \ | |
\ | |
# pip | |
PIP_NO_CACHE_DIR=off \ |