Files
fission-src/environments/perl/Dockerfile
T
Moritz Grosch (LittleFox)andSoam Vasani 6142ac3648 Added perl environment (#311)
Perl runtime environment and example function.
2017-09-07 23:42:40 -07:00

10 lines
138 B
Docker

FROM perl:latest
RUN cpanm -n Twiggy Getopt::Args Dancer2
COPY server.pl /server.pl
WORKDIR /
EXPOSE 8888
ENTRYPOINT ["/server.pl"]