We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b54c4 commit cec61faCopy full SHA for cec61fa
python3.6/build/Dockerfile
@@ -6,4 +6,11 @@ ENV PATH=/var/lang/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/
6
PYTHONPATH=/var/runtime
7
8
RUN rm -rf /var/runtime /var/lang && \
9
- curl https://lambci.s3.amazonaws.com/fs/python3.6.tgz | tar -zx -C /
+ 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