github.com/nektos/act@v0.2.83/pkg/runner/testdata/docker-action-host-env/action/Dockerfile (about)

     1  FROM debian:bullseye-slim
     2  
     3  # Install dependencies
     4  RUN apt-get update && apt-get install -y \
     5      curl \
     6      && apt-get clean
     7  
     8  # Copy the entrypoint script
     9  COPY entrypoint.sh /entrypoint.sh
    10  RUN chmod +x /entrypoint.sh
    11  
    12  # Set the entrypoint
    13  ENTRYPOINT ["/entrypoint.sh"]