docs/Dockerfile

16 lines
226 B
Docker
Raw Permalink Normal View History

2024-06-23 23:10:23 +02:00
FROM debian:12-slim
# set work directory
WORKDIR /usr/src/app
# Print output
RUN export TERM=xterm
# install software
RUN apt update
RUN apt install -y emacs-nox
# Build
2024-06-24 22:00:00 +02:00
COPY . .
2024-06-23 23:10:23 +02:00
ENTRYPOINT emacs --batch --script build.el