File: Dockerfile

package info (click to toggle)
jo 1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: ansic: 1,914; sh: 566; makefile: 60; exp: 42
file content (9 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
FROM alpine AS builder
RUN apk -U add automake autoconf build-base make pkgconf
COPY . /src
WORKDIR /src
RUN autoreconf -i && ./configure && make check && make install

FROM alpine
COPY --from=builder /usr/local/bin/jo /bin/jo
ENTRYPOINT ["/bin/jo"]