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

Latest commit

 

History

History
History
33 lines (29 loc) · 1.07 KB

File metadata and controls

33 lines (29 loc) · 1.07 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM scratch
# Docker doesn't support unpacking from remote URLs with ADD,
# and we don't want to 'docker import' because we can't squash into a small layer
# So this is expected to be downloaded from https://lambci.s3.amazonaws.com/fs/base.tgz
ADD ./base.tgz /
ENV PATH=/usr/local/bin:/usr/bin/:/bin:/opt/bin \
LD_LIBRARY_PATH=/lib64:/usr/lib64:/var/runtime:/var/runtime/lib:/var/task:/var/task/lib:/opt/lib \
LANG=en_US.UTF-8 \
TZ=:UTC \
LAMBDA_TASK_ROOT=/var/task \
LAMBDA_RUNTIME_DIR=/var/runtime \
_LAMBDA_CONTROL_SOCKET=14 \
_LAMBDA_SHARED_MEM_FD=11 \
_LAMBDA_LOG_FD=9 \
_LAMBDA_SB_ID=7 \
_LAMBDA_CONSOLE_SOCKET=16 \
_LAMBDA_RUNTIME_LOAD_TIME=1530232235231 \
_AWS_XRAY_DAEMON_ADDRESS=169.254.79.2 \
_AWS_XRAY_DAEMON_PORT=2000 \
AWS_XRAY_DAEMON_ADDRESS=169.254.79.2:2000 \
AWS_XRAY_CONTEXT_MISSING=LOG_ERROR \
_X_AMZN_TRACE_ID='Parent=11560be54abce8ed'
RUN yum reinstall -y filesystem; \
yum clean all && \
rm -rf /var/cache/yum && \
mkdir /tmp && \
chown sbx_user1051:495 /tmp && \
chmod 700 /tmp
WORKDIR /var/task
Morty Proxy This is a proxified and sanitized view of the page, visit original site.