docs/Dockerfile
Andros Fenollosa 6efe7a22a0
Some checks are pending
Gitea Actions Deploy / deploy (push) Waiting to run
Add Docker build
2024-06-23 23:10:23 +02:00

16 lines
233 B
Docker

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
COPY build.el .
ENTRYPOINT emacs --batch --script build.el