We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c923ad4 + ea764a7 commit e34f643Copy full SHA for e34f643
Makefile
@@ -3,7 +3,7 @@ EMACS_LOAD := -l $(EMACS_INIT)
3
EMACS_FLAGS := --batch --kill $(EMACS_LOAD)
4
ORG_FILES := $(wildcard *.org)
5
HTML_FILES := $(patsubst %.org, %.html, $(ORG_FILES))
6
-DOCKER_IMG := ryukinix/lerax
+DOCKER_IMG := commonlispbr/emacs
7
USER := $(shell id -u):$(shell id -g)
8
DOCKER_RUN := docker run -w /tmp \
9
-v $(shell pwd):/tmp \
@@ -24,5 +24,8 @@ shell:
24
@$(DOCKER_RUN) $(DOCKER_IMG) $< $(EMACS_FLAGS) -f org-html-export-to-html
25
@$(DOCKER_RUN) --entrypoint=/bin/chown $(DOCKER_IMG) $(USER) "$*.html"
26
27
+server:
28
+ python3 -m http.server 8000
29
+
30
clean:
31
rm -rf *.html
0 commit comments