mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
35 lines
No EOL
629 B
Docker
35 lines
No EOL
629 B
Docker
FROM debian:stretch-slim
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
cpanminus \
|
|
build-essential \
|
|
libpq-dev \
|
|
git \
|
|
ssmtp \
|
|
&& cpanm -in --no-man-pages \
|
|
Cache::File \
|
|
Crypt::Eksblowfish \
|
|
DateTime \
|
|
DateTime::Format::Strptime \
|
|
DBI \
|
|
DBD::Pg \
|
|
Email::Sender \
|
|
Geo::Distance \
|
|
Geo::Distance::XS \
|
|
Mojolicious \
|
|
Mojolicious::Plugin::Authentication \
|
|
Travel::Status::DE::IRIS \
|
|
UUID::Tiny \
|
|
JSON \
|
|
&& rm -rf ~/.cpanm \
|
|
&& apt-get purge -y \
|
|
build-essential \
|
|
cpanminus \
|
|
&& apt-get autoremove -y
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
CMD /app/docker-run.sh |