File Dockerfile of Package irssi
# Defines the tag for OBS and build script builds: #!BuildTag: opensuse/irssi:latest #!BuildRequires: container:opensuse/tumbleweed FROM opensuse/tumbleweed # Work around https://github.com/openSUSE/obs-build/issues/487 RUN zypper install -y openSUSE-release-appliance-docker # Change working directory WORKDIR / # Copy files COPY entrypoint.sh / # Install packages RUN zypper refresh \ && zypper --non-interactive in irssi tmux \ && zypper clean -a # Do stuff RUN chmod u+x /entrypoint.sh \ && mkdir -p /run/tmux # Entrypoint ENTRYPOINT ["/entrypoint.sh"]