File: Dockerfile

package info (click to toggle)
libtest-bdd-cucumber-perl 0.87-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 716 kB
  • sloc: perl: 4,493; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
ARG VERSION
FROM perl:5.30
RUN cpanm Carton
WORKDIR /usr/src/app
RUN echo "requires 'Test::BDD::Cucumber', '${VERSION}'" > cpanfile; carton install
ENV PERL5LIB=/usr/src/app/local/lib/perl5
ENTRYPOINT [ "/usr/src/app/local/bin/pherkin" ]