Skip to content
Snippets Groups Projects
Commit 2316e03d authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Dockerfile: Add missing build dependencies for perl modules

parent 874de112
No related branches found
No related tags found
No related merge requests found
......@@ -6,15 +6,32 @@ COPY cpanfile /app/cpanfile
WORKDIR /app
RUN apt-get update && apt-get install --no-install-recommends -y \
ca-certificates \
cpanminus \
build-essential \
libpq-dev \
gcc \
git \
libc6-dev \
libdb5.3 \
libdb5.3-dev \
libpq-dev \
libssl1.1 \
libssl-dev \
libxml2 \
libxml2-dev \
make \
zlib1g-dev \
&& cpanm -in --no-man-pages --installdeps . \
&& rm -rf ~/.cpanm \
&& apt-get purge -y \
build-essential \
cpanminus \
curl \
gcc \
libc6-dev \
libdb5.3-dev \
libssl-dev \
libxml2-dev \
make \
zlib1g-dev \
&& apt-get autoremove -y
COPY . /app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment