summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 5b93afd25fbfbce1bcb544fe8c8703eb5a7a2cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM debian:stretch-slim

ARG DEBIAN_FRONTEND=noninteractive

COPY cpanfile /app/cpanfile
WORKDIR /app

RUN apt-get update && apt-get install --no-install-recommends -y \
	cpanminus \
	build-essential \
	git \
	liblwp-protocol-https-perl \
	&& cpanm -in --no-man-pages --installdeps . \
	&& rm -rf ~/.cpanm \
	&& apt-get purge -y \
	build-essential \
	cpanminus \
	&& apt-get autoremove -y

COPY . /app

CMD ["/app/docker-run.sh"]