Skip to content

Commit c766ea9

Browse files
committed
fix: install unzip to unzip downloaded binaries
1 parent 5fe5953 commit c766ea9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM public.ecr.aws/lambda/python:3.8 as build
22
RUN mkdir -p /opt/bin/ && \
33
mkdir -p /tmp/downloads && \
4+
yum install -y unzip && \
45
curl -SL https://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip > /tmp/downloads/chromedriver.zip && \
56
curl -SL https://github.com/adieuadieu/serverless-chrome/releases/download/v1.0.0-37/stable-headless-chromium-amazonlinux-2017-03.zip > /tmp/downloads/headless-chromium.zip && \
67
unzip /tmp/downloads/chromedriver.zip -d /opt/bin/ && \

0 commit comments

Comments
 (0)