mirror of
https://github.com/Django-LiveView/docs.git
synced 2024-11-10 02:45:42 +01:00
19 lines
283 B
Docker
19 lines
283 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 .
|
|
COPY one.org .
|
|
COPY onerc.el .
|
|
COPY assets assets
|
|
ENTRYPOINT emacs --batch --script build.el
|