travelynx/Dockerfile

23 lines
414 B
Docker
Raw Normal View History

FROM debian:stretch-slim
2019-04-13 21:49:49 +00:00
ARG DEBIAN_FRONTEND=noninteractive
COPY cpanfile /app/cpanfile
WORKDIR /app
RUN apt-get update && apt-get install --no-install-recommends -y \
2019-04-13 21:49:49 +00:00
cpanminus \
build-essential \
libpq-dev \
git \
&& cpanm -in --no-man-pages --installdeps . \
&& rm -rf ~/.cpanm \
&& apt-get purge -y \
build-essential \
cpanminus \
&& apt-get autoremove -y
2019-04-13 21:49:49 +00:00
COPY . /app
2019-04-21 15:50:36 +00:00
CMD ["/app/docker-run.sh"]