Skip to content

Commit b97e284

Browse files
committed
Fix for latest glibc changes
1 parent f48ff1f commit b97e284

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

base/build/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin
55
# A couple of packages are either missing critical-ish files, or didn't make it into the tar
66
# Reinstalling filesystem might not succeed fully, but continue anyway
77
RUN chmod 1777 /tmp && \
8+
yum install -y --releasever=latest glibc-devel; \
89
/usr/bin/python3 -c "from configparser import SafeConfigParser; \
910
yum_conf = SafeConfigParser(); \
10-
yum_conf.read('/etc/yum.conf'); \
11+
yum_conf.read('/etc/yum/yum.conf'); \
1112
yum_conf.has_section('main') or yum_conf.add_section('main'); \
1213
yum_conf.set('main', 'plugins', '1'); \
13-
f = open('/etc/yum.conf', 'w'); \
14+
f = open('/etc/yum/yum.conf', 'w'); \
1415
yum_conf.write(f); \
1516
f.close();" && \
1617
rpm --rebuilddb && \

base/dump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUNTIMES="node43 node610 node810 python27 python36 python37 ruby2.5 java8 go1x d
44

55
for RUNTIME in $RUNTIMES; do
66
echo $RUNTIME
7-
aws lambda invoke --function-name "dump-${RUNTIME}" /dev/stdout
7+
aws --cli-read-timeout 0 --cli-connect-timeout 0 lambda invoke --function-name "dump-${RUNTIME}" /dev/stdout
88
aws logs filter-log-events --log-group-name "/aws/lambda/dump-${RUNTIME}" \
99
--start-time $(node -p 'Date.now() - 5*60*1000') --query 'events[].message' --output text
1010
done

0 commit comments

Comments
 (0)