瀏覽代碼

Update docker to use directly pandoc download

Additionally update docker with some  install and cleanup best practices
Cris Favero 6 年之前
父節點
當前提交
15f9a7fc80
共有 1 個文件被更改,包括 12 次插入2 次删除
  1. 12 2
      .docker/resume.dockerfile

+ 12 - 2
.docker/resume.dockerfile

@@ -6,8 +6,18 @@ RUN useradd --user-group --create-home --shell /bin/false app
 ENV HOME=/home/app
 WORKDIR $HOME
 
-RUN apt-get update
-RUN apt-get install build-essential pandoc context -y
+RUN apt-get update && \
+    apt-get install -y \
+    build-essential \
+    wget \
+    context \
+    && rm -rf /var/lib/apt/lists/*
+RUN wget https://github.com/jgm/pandoc/releases/download/2.2.1/pandoc-2.2.1-1-amd64.deb
+RUN dpkg -i pandoc-2.2.1-1-amd64.deb  && rm pandoc-*.deb
+#Cleanup to reduce container size
+RUN apt-get remove -y wget && \ 
+    apt-get autoclean && \
+    apt-get clean
 
 ENV APP_NAME=resume