Added perl environment (#311)

Perl runtime environment and example function.
This commit is contained in:
Moritz Grosch (LittleFox)
2017-09-07 23:42:40 -07:00
committed by Soam Vasani
parent 1b9fa5bc30
commit 6142ac3648
4 changed files with 103 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM perl:latest
RUN cpanm -n Twiggy Getopt::Args Dancer2
COPY server.pl /server.pl
WORKDIR /
EXPOSE 8888
ENTRYPOINT ["/server.pl"]