Comments cleanup, removing centos7 rpm generating directory

This commit is contained in:
mstrankowski
2022-08-01 12:20:50 +02:00
parent 0cc80315cc
commit ffd07b43a2
5 changed files with 3 additions and 57 deletions

View File

@@ -18,6 +18,7 @@ ARG USERID=33004
COPY target/${env.project_artifactId}-${env.project_version}.jar /usr/bin
#removing perl-ExtUtils-MakeMaker cascades to remove exiftools
RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.project_artifactId}.jar && \
curl -s -S $EXIFTOOL_URL -o ${EXIFTOOL_FOLDER}.tgz && \
tar xzf ${EXIFTOOL_FOLDER}.tgz && \
@@ -28,7 +29,6 @@ RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${
make test && \
make install) && \
yum -y autoremove make && \
#TODO perl-ExtUtils-MakeMaker removal removes exiftools \
rm -rf ${EXIFTOOL_FOLDER} ${EXIFTOOL_FOLDER}.tgz && \
yum clean all