mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-07 08:53:57 +01:00
fix (build): docker image
This commit is contained in:
parent
2c271e02fc
commit
b513bf6888
1 changed files with 3 additions and 3 deletions
|
|
@ -1,8 +1,7 @@
|
||||||
FROM debian:stable-slim
|
FROM debian:stable-slim
|
||||||
MAINTAINER mickael@kerjean.me
|
MAINTAINER mickael@kerjean.me
|
||||||
|
|
||||||
RUN echo "deb http://debian.mirrors.ovh.net/debian stretch main" > /etc/apt/sources.list && \
|
RUN apt-get update > /dev/null && \
|
||||||
apt-get update > /dev/null && \
|
|
||||||
#################
|
#################
|
||||||
# Install
|
# Install
|
||||||
apt-get install -y libglib2.0-0 curl > /dev/null && \
|
apt-get install -y libglib2.0-0 curl > /dev/null && \
|
||||||
|
|
@ -15,7 +14,8 @@ RUN echo "deb http://debian.mirrors.ovh.net/debian stretch main" > /etc/apt/sour
|
||||||
# Optional dependencies
|
# Optional dependencies
|
||||||
apt-get install -y curl emacs zip poppler-utils > /dev/null&& \
|
apt-get install -y curl emacs zip poppler-utils > /dev/null&& \
|
||||||
# Minimal latex dependencies for org-mode
|
# Minimal latex dependencies for org-mode
|
||||||
cd ~/ && apt-get install -y wget perl > /dev/null && \
|
cd && apt-get install -y wget perl > /dev/null && \
|
||||||
|
export CTAN_REPO="http://mirror.las.iastate.edu/tex-archive/systems/texlive/tlnet" && \
|
||||||
curl -sL "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh && \
|
curl -sL "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh && \
|
||||||
mv ~/.TinyTeX /usr/share/tinytex && \
|
mv ~/.TinyTeX /usr/share/tinytex && \
|
||||||
/usr/share/tinytex/bin/x86_64-linux/tlmgr install wasy && \
|
/usr/share/tinytex/bin/x86_64-linux/tlmgr install wasy && \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue