Skip to content

Commit

Permalink
Add ghostscript runtime to Docekr image
Browse files Browse the repository at this point in the history
  • Loading branch information
MonsieurV committed Aug 3, 2022
1 parent 06d8cf7 commit 3889283
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 2022-08-03-1

* Add ghostscript runtime to the base Docker image

## 2022-07-31-1

* Make sync cache socket more reliable with lazy pirate pattern (prevent dead-lock on server crash)
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ dev:
dev-build:
docker-compose -f docker-compose.dev.yml build --no-cache

dev-sh-latex:
docker-compose -f docker-compose.dev.yml exec latex /bin/bash

## -------------------------------
## Tests ##
## -------------------------------
Expand Down
8 changes: 8 additions & 0 deletions container/tl-distrib-alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ RUN apk --no-cache add \
RUN update-ms-fonts && fc-cache -f


#--------------------------------
# Install additionnal runtimes.
#--------------------------------

RUN apk --no-cache add \
ghostscript


#--------------------------------
# Install Latex packages.
#--------------------------------
Expand Down
9 changes: 9 additions & 0 deletions container/tl-distrib-debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ RUN apt-get update -qq && apt-get install -y \
&& apt-get autoremove --purge -y && apt-get clean && rm -rf /var/lib/apt/lists/*


#--------------------------------
# Install additionnal runtimes.
#--------------------------------

RUN apt-get update -qq && apt-get install -y \
ghostscript \
&& apt-get autoremove --purge -y && apt-get clean && rm -rf /var/lib/apt/lists/*


#--------------------------------
# Install Latex packages.
#--------------------------------
Expand Down

0 comments on commit 3889283

Please sign in to comment.