Commit b21c8242 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Update Dockerfile: Use Perl 5.30 on Debian buster

parent c4553804
Loading
Loading
Loading
Loading
+11 −12
Original line number Diff line number Diff line
FROM debian:stretch-slim
FROM perl:5.30-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 . \
RUN apt-get update \
	&& apt-get -y --no-install-recommends install ca-certificates curl gcc git libc6-dev libdb5.3 libdb5.3-dev libssl1.1 libssl-dev libxml2 libxml2-dev make zlib1g-dev \
	&& cpanm -n --no-man-pages --installdeps . \
	&& rm -rf ~/.cpanm \
	&& apt-get purge -y \
	build-essential \
	cpanminus \
	&& apt-get autoremove -y
	&& apt-get -y purge curl gcc libc6-dev libdb5.3-dev libssl-dev libxml2-dev make zlib1g-dev \
	&& apt-get -y autoremove \
	&& apt-get -y clean \
	&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*

COPY . /app

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

CMD ["hypnotoad", "-f", "index.pl"]

docker-run.sh

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
#!/bin/sh

set -eu

exec /usr/local/bin/hypnotoad -f index.pl