resume.dockerfile 856 B

123456789101112131415161718192021222324252627282930313233
  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. RUN apt-get update && \
  7. apt-get install -y \
  8. build-essential \
  9. wget \
  10. context \
  11. && rm -rf /var/lib/apt/lists/*
  12. RUN wget https://github.com/jgm/pandoc/releases/download/2.2.1/pandoc-2.2.1-1-amd64.deb
  13. RUN dpkg -i pandoc-2.2.1-1-amd64.deb && rm pandoc-*.deb
  14. #Cleanup to reduce container size
  15. RUN apt-get remove -y wget && \
  16. apt-get autoclean && \
  17. apt-get clean
  18. ENV APP_NAME=resume
  19. # before switching to user we need to set permission properly
  20. # copy all files, except the ignored files from .dockerignore
  21. COPY . $HOME/$APP_NAME/
  22. COPY ./Makefile $HOME/$APP_NAME/
  23. RUN chown -R app:app $HOME/*
  24. USER app
  25. WORKDIR $HOME/$APP_NAME
  26. RUN make clean