File: Dockerfile

package info (click to toggle)
pgformatter 5.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,964 kB
  • sloc: sql: 186,493; perl: 5,694; makefile: 2; sh: 1
file content (6 lines) | stat: -rw-r--r-- 122 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
FROM perl
WORKDIR /pgformatter
COPY . /pgformatter
RUN perl Makefile.PL
RUN make && make install
ENTRYPOINT ["pg_format"]