resume.dockerfile 914 B

123456789101112131415161718192021222324252627282930313233343536
  1. FROM ubuntu
  2. # prepare a user which runs everything locally! - required in child images!
  3. RUN useradd --user-group --create-home --shell /bin/false app
  4. ENV HOME=/home/app
  5. WORKDIR $HOME
  6. ENV DEBIAN_FRONTEND="noninteractive"
  7. RUN apt-get update && \
  8. apt-get install -y \
  9. build-essential \
  10. wget \
  11. context \
  12. && rm -rf /var/lib/apt/lists/*
  13. RUN wget https://github.com/jgm/pandoc/releases/download/2.2.1/pandoc-2.2.1-1-amd64.deb
  14. RUN dpkg -i pandoc-2.2.1-1-amd64.deb && rm pandoc-*.deb
  15. #Cleanup to reduce container size
  16. RUN apt-get remove -y wget && \
  17. apt-get autoclean && \
  18. apt-get clean
  19. ENV APP_NAME=resume
  20. # before switching to user we need to set permission properly
  21. # copy all files, except the ignored files from .dockerignore
  22. COPY . $HOME/$APP_NAME/
  23. COPY ./Makefile $HOME/$APP_NAME/
  24. RUN chown -R app:app $HOME/*
  25. USER app
  26. WORKDIR $HOME/$APP_NAME
  27. RUN make clean
  28. ENTRYPOINT make pdf