File: Dockerfile

package info (click to toggle)
libjson-path-perl 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: perl: 891; javascript: 62; sh: 3; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
FROM centos:7

ENV TZ="America/Chicago"
RUN yum update -y
RUN yum install which -y
RUN yum install perl-core -y
RUN yum install gcc -y
RUN yum install make -y
RUN NONINTERACTIVE=1 bash -c "curl -L https://cpanmin.us | perl - App::cpanminus"
RUN cpanm JSON::Path
CMD perl -MJSON::Path -e 'print "JSON::Path v" . $JSON::Path::VERSION . "\n";'