blob: 9fe8f4c2a2db0cb74e57a20e56f1a9932f937f8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
FROM opensuse/leap:15.3
RUN zypper -n up
RUN zypper -n install \
gcc \
make \
flex \
bison \
autoconf \
libssh-devel \
ncurses-devel \
readline-devel
RUN zypper -n install \
git \
rpm-build \
systemd \
systemd-rpm-macros \
python3 \
python3-pip \
python3-setuptools
|