docs/Dockerfile
Andros Fenollosa 88efca89b3
Some checks are pending
Gitea Actions Deploy / deploy (push) Waiting to run
Update Dockerfile
2024-06-24 22:00:00 +02:00

16 lines
226 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 . .
ENTRYPOINT emacs --batch --script build.el