Files
act_runner/pkg/runner/testdata/docker-action-host-env/action/Dockerfile
ChristopherHX a3c8116dee fix: step container workdir and mounts (#93)
* fix: step container workdir and mounts
* avoid perm issues and do not mount tool_cache
2025-04-26 14:14:52 +02:00

13 lines
268 B
Docker

FROM debian:bullseye-slim
# Install dependencies
RUN apt-get update && apt-get install -y \
curl \
&& apt-get clean
# Copy the entrypoint script
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Set the entrypoint
ENTRYPOINT ["/entrypoint.sh"]