This commit is contained in:
2025-06-09 15:54:13 +03:00
committed by Emin Arslan
commit f89458b056
3 changed files with 26 additions and 0 deletions

10
Dockerfile Normal file
View File

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

8
Dockerfile~ Normal file
View File

@ -0,0 +1,8 @@
FROM ubuntu
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update &&
apt install -y emacs clang clangd

8
emacs-init Normal file
View File

@ -0,0 +1,8 @@
;; Require Emacs' package functionality
(require 'package)
;; Add the Melpa repository to the list of package sources
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
;; Initialise the package system.
(package-initialize)