Browse Source

add entrypoint script to action container

Mark Szepieniec 3 years ago
parent
commit
c9d5ca2163
3 changed files with 3 additions and 1 deletions
  1. 3 0
      .docker/resume.dockerfile
  2. 0 1
      actions/action.yml
  3. 0 0
      actions/entrypoint.sh

+ 3 - 0
.docker/resume.dockerfile

@@ -2,3 +2,6 @@ FROM pandoc/latex:2.9
 
 RUN apk add make
 
+COPY actions/entrypoint.sh /entrypoint.sh
+
+ENTRYPOINT ["/entrypoint.sh"]

+ 0 - 1
actions/action.yml

@@ -4,4 +4,3 @@ description: 'Build a document using texlive'
 runs:
   using: 'docker'
   image: 'docker://ghcr.io/mszep/pandoc_resume/resume_builder:latest'
-  entrypoint: 'entrypoint.sh'

+ 0 - 0
actions/entrypoint.sh