File Dockerfile of Package weechat-container
# Specify the license of the container build description (see also the LICENSE file) # SPDX-License-Identifier: MIT # Define the names/tags of the container #!BuildTag: opensuse/weechat:latest opensuse/weechat:%PKG_VERSION% opensuse/weechat:%PKG_VERSION%.%RELEASE% FROM opensuse/tumbleweed:latest MAINTAINER Matěj Cepl <mcepl@cepl.eu> # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.example LABEL org.opencontainers.image.title="opensuse/weechat" LABEL org.opencontainers.image.description="weechat distrobox container" LABEL org.opencontainers.image.version="%PKG_VERSION%.%RELEASE%" LABEL org.opensuse.reference="registry.opensuse.org/home/mcepl/moldavite/containers/opensuse/weechat:%PKG_VERSION%.%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" # endlabelprefix # Set environmental variables ENV TERM=xterm-256color # Fill the image with content and clean the cache(s) RUN zypper --non-interactive refresh RUN zypper --non-interactive install weechat weechat-lang weechat-lua weechat-python weechat-perl weechat-spell RUN zypper --non-interactive install python3-websocket-client RUN zypper clean --all ENTRYPOINT /usr/bin/weechat