File: Dockerfile

package info (click to toggle)
boinctui 2.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 648 kB
  • sloc: cpp: 8,150; makefile: 74
file content (26 lines) | stat: -rw-r--r-- 471 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM alpine AS base

RUN \
    apk add \
        automake autoconf g++ make \
        ncurses-dev expat-dev openssl-dev

COPY ./ /workdir/
WORKDIR /workdir

RUN \
    autoconf; \
    automake --add-missing; \
    ./configure --without-gnutls; \
    make; \
    strip boinctui

FROM alpine AS final

RUN \
    apk add --no-cache \
        expat ncurses openssl libstdc++ \
        libpanelw libformw libmenuw

COPY --from=base /workdir/boinctui /
ENTRYPOINT ["/boinctui"]