Skip to content

Commit eaa475f

Browse files
authored
Add files via upload
1 parent 30259c9 commit eaa475f

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

docker/linux/openSUSE/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
opensuse:
2+
sudo docker build -f opensuse.Dockerfile -t opensuse1 .
3+
sudo docker run opensuse1
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM opensuse/tumbleweed:latest
2+
RUN zypper update && zypper in -y \
3+
make \
4+
curl \
5+
wget \
6+
git \
7+
vim \
8+
net-tools \
9+
openssh \
10+
neofetch \
11+
inxi \
12+
smartmontools \
13+
docker \
14+
nano \
15+
gcc \
16+
nodejs \
17+
python \
18+
python3-pip \
19+
python3 \
20+
ruby
21+
RUN zypper update
22+
RUN zypper in -y mysql-server
23+
RUN zypper in -y postgresql
24+
RUN zypper refresh
25+
RUN zypper update
26+
CMD [ "neofetch" ]

0 commit comments

Comments
 (0)