Merge pull request #107 from awalterschulze/master
Removed build.sh and Pygments dependency
This commit is contained in:
commit
f15d18ed05
10
Dockerfile
10
Dockerfile
|
@ -5,12 +5,12 @@
|
|||
FROM ubuntu:trusty
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
RUN apt-get update -q \
|
||||
&& apt-get install -qy \
|
||||
RUN apt-get update -q
|
||||
RUN apt-get install -qy texlive-full
|
||||
RUN apt-get install -qy \
|
||||
gnuplot \
|
||||
python-pygments \
|
||||
texlive-full \
|
||||
wget
|
||||
wget \
|
||||
build-essential
|
||||
|
||||
ADD ./getFiraFont.sh ./getFiraFont.sh
|
||||
RUN ./getFiraFont.sh
|
||||
|
|
2
Makefile
2
Makefile
|
@ -63,7 +63,7 @@ uninstall:
|
|||
@rmdir $(MANUAL_DIR)
|
||||
|
||||
docker-run: docker-build
|
||||
docker run --rm=true --name $(DOCKER_CONTAINER) -i -t -v `pwd`:/data $(DOCKER_IMAGE) /data/build.sh
|
||||
docker run --rm=true --name $(DOCKER_CONTAINER) -i -t -v `pwd`:/data $(DOCKER_IMAGE) make
|
||||
|
||||
docker-build:
|
||||
docker build -t $(DOCKER_IMAGE) .
|
||||
|
|
Loading…
Reference in New Issue