mirror of
https://github.com/bendtherules/hello-github-actions.git
synced 2026-08-18 13:53:58 +00:00
6 lines
113 B
Docker
6 lines
113 B
Docker
FROM debian:9.5-slim
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|