github.com/nektos/act@v0.2.63/pkg/runner/testdata/actions/docker-local/Dockerfile (about)

     1  # Container image that runs your code
     2  FROM node:16-buster-slim
     3  
     4  # Copies your code file from your action repository to the filesystem path `/` of the container
     5  COPY entrypoint.sh /entrypoint.sh
     6  
     7  # Code file to execute when the docker container starts up (`entrypoint.sh`)
     8  ENTRYPOINT ["/entrypoint.sh"]