We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ded0fda commit b2f20aeCopy full SHA for b2f20ae
Dockerfile
@@ -0,0 +1,13 @@
1
+# docker build --platform linux/amd64 -t ${IMAGE} --target=base .
2
+FROM public.ecr.aws/lambda/python:3.9-x86_64
3
+ENV PRINCE_FILENAME=prince-14.1-linux-generic-x86_64
4
+RUN yum clean all \
5
+ && yum install -y unzip giflib \
6
+ && curl -O -J https://www.princexml.com/download/prince-14.2-aws-lambda.zip \
7
+ && unzip prince-14.2-aws-lambda.zip \
8
+ && rm -rf /var/cache/yum \
9
+ && rm prince-14.2-aws-lambda.zip
10
+COPY requirements.txt ./
11
+RUN pip3 install -r requirements.txt
12
+ENTRYPOINT [""]
13
+CMD ["run_sql.main"]
0 commit comments