File: Dockerfile

package info (click to toggle)
libgraphql-perl 0.54-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 712 kB
  • sloc: perl: 5,094; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 411 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# from https://docs.docker.com/get-started/part2/#dockerfile
# stuff from https://hub.docker.com/_/perl/
# + https://github.com/perl/docker-perl/blob/master/5.026.001-64bit/Dockerfile
FROM graphqlperl/graphql-prereq:latest

# Copy the current directory contents into the container
ADD . /opt/graphql-lib/

RUN cd /opt/graphql-lib \
  && perl Makefile.PL \
  && make test install \
  && perl5.26.1 -MGraphQL -e0