Skip to content

Commit

Permalink
Add opensuse images
Browse files Browse the repository at this point in the history
Added docker files to build images for
the latest opensuse 'leap' versions:
15.0, 15.1, 15.2
  • Loading branch information
avtikhon committed Apr 27, 2020
1 parent 60f02c6 commit 5e72f29
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
24 changes: 24 additions & 0 deletions opensuse/leap/15.0/Dockerfile
@@ -0,0 +1,24 @@
FROM opensuse/leap:15.0
MAINTAINER Alexander V. Tikhonov <avtikhon@gmail.com>

# Install base toolset
RUN zypper install -y \
autoconf \
ccache \
cmake \
curl \
devscripts \
dnf \
fakeroot \
gdb \
git \
lsb-release \
rpm-build \
sudo \
tar \
wget \
xz \
yum-utils

# Enable sudo without password
RUN echo '%users ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
24 changes: 24 additions & 0 deletions opensuse/leap/15.1/Dockerfile
@@ -0,0 +1,24 @@
FROM opensuse/leap:15.0
MAINTAINER Alexander V. Tikhonov <avtikhon@gmail.com>

# Install base toolset
RUN zypper install -y \
autoconf \
ccache \
cmake \
curl \
devscripts \
dnf \
fakeroot \
gdb \
git \
lsb-release \
rpm-build \
sudo \
tar \
wget \
xz \
yum-utils

# Enable sudo without password
RUN echo '%users ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
24 changes: 24 additions & 0 deletions opensuse/leap/15.2/Dockerfile
@@ -0,0 +1,24 @@
FROM opensuse/leap:15.0
MAINTAINER Alexander V. Tikhonov <avtikhon@gmail.com>

# Install base toolset
RUN zypper install -y \
autoconf \
ccache \
cmake \
curl \
devscripts \
dnf \
fakeroot \
gdb \
git \
lsb-release \
rpm-build \
sudo \
tar \
wget \
xz \
yum-utils

# Enable sudo without password
RUN echo '%users ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers

0 comments on commit 5e72f29

Please sign in to comment.