Files
emacs-docker/Dockerfile
2025-06-09 15:54:13 +03:00

11 lines
164 B
Docker

FROM debian
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && \
apt install -y emacs clang clangd && \
apt clean all
ENTRYPOINT ["/bin/emacs" "-nw"]