Skip to content

Commit

Permalink
Merge pull request #824 from luxaritas/fix/docker-cpan
Browse files Browse the repository at this point in the history
Fix installing dependencies via cpan in docker, #824
  • Loading branch information
AlDanial committed Mar 21, 2024
2 parents 8303fb7 + 436708e commit 98fba01
Showing 1 changed file with 25 additions and 12 deletions.
37 changes: 25 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,31 +1,44 @@
# Dockerfile by Sébastien HOUZÉ, https://github.com/shouze
FROM perl:slim AS base
FROM perl:slim AS builder

RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
git \
unzip \
dos2unix \
&& rm -rf /var/lib/apt/lists/*
gcc

#Install all dependencies
# 2024-01-19 cpanm command has been failing -- no explanation
#RUN cpanm \
# Algorithm::Diff \
# Digest::MD5 \
# Parallel::ForkManager \
# Regexp::Common \
# && rm -rf $HOME/.cpanm
RUN cpanm \
Algorithm::Diff \
Digest::MD5 \
Parallel::ForkManager \
Regexp::Common

#Copy source code
COPY cloc /usr/src/
RUN find /usr/src/ -type f -exec dos2unix {} \;

FROM perl:slim AS base

RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
git \
unzip \
&& rm -rf /var/lib/apt/lists/*

#Copy dependencies and source prepared in base image
COPY --from=builder /usr/local/lib/perl5 /usr/local/lib/perl5
COPY --from=builder /usr/src/ /usr/src/

####################
FROM base AS test

RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates

#Copy test code
COPY .git /usr/src/.git
COPY tests /usr/src/tests
Expand Down

0 comments on commit 98fba01

Please sign in to comment.