Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cec61fa

Browse filesBrowse files
committed
Add missing Python 3.6 headers and install awscli with pip
Fixes lambci#32 Fixes lambci#34
1 parent 69b54c4 commit cec61fa
Copy full SHA for cec61fa

File tree

Expand file treeCollapse file tree

1 file changed

+8
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+8
-1
lines changed
Open diff view settings
Collapse file

‎python3.6/build/Dockerfile‎

Copy file name to clipboardExpand all lines: python3.6/build/Dockerfile
+8-1Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,11 @@ ENV PATH=/var/lang/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/
66
PYTHONPATH=/var/runtime
77

88
RUN rm -rf /var/runtime /var/lang && \
9-
curl https://lambci.s3.amazonaws.com/fs/python3.6.tgz | tar -zx -C /
9+
curl https://lambci.s3.amazonaws.com/fs/python3.6.tgz | tar -xz -C / && \
10+
curl https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz | tar -xJ && \
11+
cd Python-3.6.1 && \
12+
./configure --prefix=/var/lang && \
13+
make -j$(getconf _NPROCESSORS_ONLN) libinstall inclinstall && \
14+
cd .. && \
15+
rm -rf Python-3.6.1 && \
16+
pip3 install awscli

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.