mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-19 14:00:29 +00:00
26 lines
459 B
Docker
26 lines
459 B
Docker
FROM alpine:3.16
|
|
|
|
# Base packages. A good set of this is just to get X (xvfb) and OpenGL
|
|
# software rendering working (all the mesa drivers).
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
grep \
|
|
procps \
|
|
imagemagick \
|
|
libxrandr \
|
|
mesa-dev \
|
|
mesa-dri-gallium \
|
|
mesa-gl \
|
|
xvfb \
|
|
xvfb-run \
|
|
xdotool
|
|
|
|
# Our terminals
|
|
RUN apk add --no-cache \
|
|
alacritty
|
|
|
|
COPY ./run.sh /run.sh
|
|
COPY ./colors.sh /colors.sh
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|