25 lines
438 B
Docker
25 lines
438 B
Docker
FROM alpine:3
|
|
|
|
ENV LANG C.UTF-8
|
|
ENV TERM xterm-256color
|
|
ENV WEECHAT_USER user
|
|
ENV WEECHAT_UID 1000
|
|
ENV WEECHAT_BASE /home/user
|
|
ENV SSH_PORT 2222
|
|
|
|
RUN apk add --update --no-cache \
|
|
weechat \
|
|
weechat-perl \
|
|
weechat-python \
|
|
weechat-spell \
|
|
ca-certificates \
|
|
aspell-en \
|
|
ncurses \
|
|
openssh-server \
|
|
python3 \
|
|
perl
|
|
|
|
COPY docker-entrypoint.sh /
|
|
CMD /bin/ash /docker-entrypoint.sh
|
|
|