-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ubuntu base image, should support more achitechtures
- Loading branch information
1 parent
39448eb
commit bafa56b
Showing
2 changed files
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,16 @@ LABEL MAINTAINER="Øyvind Nilsen <[email protected]>" | |
|
||
# Setup external package-sources | ||
RUN apt-get update && apt-get install -y \ | ||
python \ | ||
python-dev \ | ||
python-setuptools \ | ||
python-pip \ | ||
python-virtualenv \ | ||
python3 \ | ||
python3-dev \ | ||
python3-setuptools \ | ||
python3-pip \ | ||
python3-virtualenv \ | ||
--no-install-recommends && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# RUN pip install setuptools | ||
RUN pip install pytz influxdb | ||
RUN pip3 install pytz influxdb | ||
|
||
# Environment vars | ||
ENV PYTHONIOENCODING=utf-8 | ||
|
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