We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This should do the trick:
SNAKE_VER=3.7 cd $(mktemp -d) git clone https://github.com/Zeebrow/quickhost.git git clone https://github.com/Zeebrow/quickhost-plugins.git cat <<EOF > Dockerfile FROM python:$SNAKE_VER COPY ./quickhost /app/quickhost COPY ./quickhost-plugins/plugins/aws /app/aws WORKDIR /app RUN pip install --upgrade pip && \ pip install -e quickhost && \ pip install -e aws ENTRYPOINT ["main.py"] EOF if [[ $(groups) =~ docker ]]; then docker build -t quickhost-test . && docker run quickhost-test make --aws asdf else sudo docker build -t quickhost-test . && sudo docker run quickhost-test make --aws asdf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This should do the trick:
The text was updated successfully, but these errors were encountered: