Warning, /packaging/yocto-meta-kde-demo/container/Dockerfile is written in an unsupported language. File is not indexed.

0001 FROM opensuse/leap:15.2
0002 
0003 RUN zypper --non-interactive install \
0004     bash-completion \
0005     vim \
0006     python \
0007     python3 \
0008     gcc \
0009     gcc-c++ \
0010     git \
0011     chrpath \
0012     make \
0013     wget \
0014     python-xml \
0015     diffstat \
0016     makeinfo \
0017     python-curses \
0018     patch \
0019     socat \
0020     tar \
0021     python3-pip \
0022     python3-pexpect \
0023     which \
0024     glibc-locale \
0025     python3-xml \
0026     python3-curses \
0027     sudo  \
0028     iproute2 \
0029     libSDL-devel \
0030     hostname \
0031     tmux \
0032     bzip2 \
0033     gzip
0034 RUN useradd -u 1000 -g 100 -m yoctouser
0035 
0036 USER yoctouser
0037 ENV LANG=en_US.UTF-8
0038 WORKDIR /k/yocto
0039 CMD /bin/bash