FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-lambda/base/dump-python27.py at python3.6 · Frameio/docker-lambda · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Frameio
/
docker-lambda
Public
forked from
lambci/docker-lambda
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
12
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-lambda
/
base
/
dump-python27.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
76 lines (65 loc) · 2.6 KB
Breadcrumbs
docker-lambda
/
base
/
dump-python27.py
Copy path
File metadata and controls
76 lines (65 loc) · 2.6 KB
Raw
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from
__future__
import
print_function
import
os
import
sys
import
subprocess
import
boto3
from
boto3
.
s3
.
transfer
import
S3Transfer
client
=
boto3
.
client
(
's3'
)
transfer
=
S3Transfer
(
client
)
def
lambda_handler
(
event
,
context
):
if
(
'cmd'
in
event
):
return
print
(
subprocess
.
check_output
([
'sh'
,
'-c'
,
event
[
'cmd'
]]))
filename
=
'python2.7.tgz'
cmd
=
'tar -cpzf /tmp/{} --numeric-owner --ignore-failed-read /var/runtime /var/lang'
.
format
(
filename
)
subprocess
.
call
([
'sh'
,
'-c'
,
cmd
])
print
(
'Zipping done! Uploading...'
)
data
=
transfer
.
upload_file
(
'/tmp/'
+
filename
,
'lambci'
,
'fs/'
+
filename
,
extra_args
=
{
'ACL'
:
'public-read'
})
print
(
'Uploading done!'
)
print
(
sys
.
executable
)
print
(
sys
.
argv
)
print
(
os
.
getcwd
())
print
(
__file__
)
print
(
os
.
environ
)
print
(
context
.
__dict__
)
return
data
# /usr/bin/python2.7
# ['/var/runtime/awslambda/bootstrap.py']
# /var/task
# /var/task/lambda_function.py
# {
# 'AWS_LAMBDA_FUNCTION_VERSION': '$LATEST',
# 'LAMBDA_TASK_ROOT': '/var/task',
# 'PATH': '/usr/local/bin:/usr/bin/:/bin',
# 'LD_LIBRARY_PATH': '/lib64:/usr/lib64:/var/runtime:/var/runtime/lib:/var/task:/var/task/lib',
# 'LANG': 'en_US.UTF-8',
# 'AWS_LAMBDA_FUNCTION_NAME': 'dump-python27',
# 'AWS_REGION': 'us-east-1',
# 'AWS_XRAY_CONTEXT_MISSING': 'LOG_ERROR',
# 'AWS_SESSION_TOKEN': 'FQoDYXdzEMb//////////...0oog7bzuQU=',
# 'AWS_SECURITY_TOKEN': 'FQoDYXdzEMb//////////...0oog7bzuQU=',
# 'LAMBDA_RUNTIME_DIR': '/var/runtime',
# 'PYTHONPATH': '/var/runtime',
# 'AWS_LAMBDA_FUNCTION_MEMORY_SIZE': '1536',
# '_AWS_XRAY_DAEMON_PORT': '2000',
# '_AWS_XRAY_DAEMON_ADDRESS': '169.254.79.2',
# 'AWS_LAMBDA_LOG_GROUP_NAME': '/aws/lambda/dump-python27',
# 'AWS_LAMBDA_LOG_STREAM_NAME': '2017/03/23/[$LATEST]c079a84d433534434534ef0ddc99d00f',
# 'AWS_ACCESS_KEY_ID': 'ASIA...C37A',
# '_X_AMZN_TRACE_ID': 'Root=1-dc99d00f-c079a84d433534434534ef0d;Parent=91ed514f1e5c03b2;Sampled=0',
# 'AWS_DEFAULT_REGION': 'us-east-1',
# 'AWS_SECRET_ACCESS_KEY': 'JZvD...BDZ4L',
# 'AWS_EXECUTION_ENV': 'AWS_Lambda_python2.7',
# 'AWS_XRAY_DAEMON_ADDRESS': '169.254.79.2:2000'
# }
# {
# 'aws_request_id': '1fcdc383-a9e8-4228-bc1c-8db17629e183',
# 'log_stream_name': '2017/03/23/[$LATEST]c079a84d433534434534ef0ddc99d00f',
# 'invoked_function_arn': 'arn:aws:lambda:us-east-1:879423879432:function:dump-python27',
# 'client_context': None,
# 'log_group_name': '/aws/lambda/dump-python27',
# 'function_name': 'dump-python27',
# 'function_version': '$LATEST',
# 'identity': <__main__.CognitoIdentity object at 0x7f5985a27fd0>,
# 'memory_limit_in_mb': '1536'
# }
Back
|
FazBrowse Home
|
New Git URL