File: Dockerfile

package info (click to toggle)
fence-agents 4.16.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,592 kB
  • sloc: xml: 17,313; python: 15,541; ansic: 12,934; makefile: 424; sh: 224; perl: 135; lex: 106; yacc: 105
file content (34 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (2)
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
27
28
29
30
31
32
33
34
FROM opensuse/leap:15.5

RUN zypper in -y \
    git \
    autoconf \
    automake \
    libtool \
    make \
    gcc \
    libcorosync-devel \
    libxslt1 \
    libxslt-tools \
    python3-devel \
    python3-httplib2 \
    python3-pexpect \
    python3-pycurl \
    python3-requests \
    python3-suds-jurko \
    python3-openwsman \
    python3-boto3 \
    python3-novaclient \
    python3-keystoneclient \
    mozilla-nss-devel \
    mozilla-nspr-devel \
    libvirt-devel \
    libxml2-devel \
    flex \
    bison \
    libuuid-devel \
    systemd

WORKDIR /code
VOLUME /code
ENTRYPOINT ["./docker/entrypoint.sh"]