-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile to python test directory
Add initial version of test Dockerfile to python test directory.
- Loading branch information
1 parent
02353fc
commit 0314cc4
Showing
3 changed files
with
20 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM ubuntu | ||
|
||
RUN apt-get update >/dev/null && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y make build-essential \ | ||
libssl-dev zlib1g-dev libbz2-dev \ | ||
libreadline-dev libsqlite3-dev \ | ||
wget curl llvm libncurses5-dev libncursesw5-dev \ | ||
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git | ||
|
||
RUN curl https://pyenv.run | bash | ||
|
||
ENV PATH="/root/.pyenv/bin:$PATH" | ||
RUN eval "$(pyenv init -)" | ||
RUN eval "$(pyenv virtualenv-init -)" | ||
|
||
RUN pyenv install 3.6.6 |
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