-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from philvarner/pv/polish
update and cleanup after yum install
- Loading branch information
Showing
3 changed files
with
50 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,13 @@ FROM public.ecr.aws/lambda/provided:al2 as builder | |
|
||
LABEL maintainer="lambgeo <[email protected]>" | ||
|
||
RUN yum makecache fast | ||
RUN yum install -y git autoconf libtool flex bison cmake make tar gzip gcc gcc-c++ automake16 libpng-devel nasm libxml2-devel readline-devel openssl-devel curl-devel cmake3 | ||
RUN yum update -y && \ | ||
yum install -y git autoconf libtool flex bison cmake make \ | ||
tar gzip gcc gcc-c++ automake16 libpng-devel nasm \ | ||
libxml2-devel readline-devel openssl-devel curl-devel \ | ||
cmake3 && \ | ||
yum clean all && \ | ||
rm -rf /var/cache/yum /var/lib/yum/history | ||
|
||
ENV PREFIX /opt | ||
|
||
|