-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ Use QuasarDB 3.4.0 released version of the python API
- Loading branch information
François Travais
committed
Jul 31, 2019
1 parent
5703e8a
commit 060d421
Showing
4 changed files
with
26 additions
and
19 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
FROM python:3.6 | ||
|
||
RUN apt update && \ | ||
apt install apt-transport-https ca-certificates -y && \ | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
apt-transport-https \ | ||
ca-certificates \ | ||
cmake \ | ||
g++ && \ | ||
echo "deb [trusted=yes] https://repo.quasardb.net/apt/ /" > /etc/apt/sources.list.d/quasardb.list && \ | ||
apt update && \ | ||
apt install qdb-api cmake g++ -y | ||
apt-get update && \ | ||
apt-get install -y qdb-api && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install prometheus_client && \ | ||
RUN pip install prometheus_client==0.7.1 && \ | ||
pip install wheel && \ | ||
pip install quasardb==3.4.0.dev0 | ||
pip install quasardb==3.4.0 && \ | ||
rm -rf /root/.cache |
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
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