27 lines
457 B
Docker
27 lines
457 B
Docker
FROM archlinux:base@sha256:b0deabeb3d283da2c7f7dbf0eea051b7b2cd0554e0b737cc457fd21683bdcdd1
|
|
|
|
RUN pacman -Syu --noconfirm --needed \
|
|
diffutils \
|
|
freetype2 \
|
|
gcc \
|
|
gtk3 \
|
|
libxcb \
|
|
libxkbcommon \
|
|
make \
|
|
pkgconf \
|
|
plan9port \
|
|
python \
|
|
ttf-dejavu \
|
|
ttf-jigmo \
|
|
which \
|
|
xcb-imdkit \
|
|
dbus \
|
|
&& pacman -Scc --noconfirm
|
|
|
|
RUN printf "egrep='grep -E'\n" > /usr/lib/plan9/config
|
|
|
|
ENV PLAN9=/usr/lib/plan9
|
|
ENV PATH=$PATH:/usr/lib/plan9/bin
|
|
|
|
WORKDIR /src
|