blob: 77a0455d20395a23ff9767f6da31b6c7f566ce8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
FROM opensuse/leap:15.1
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
|