/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/runner/testdata/docker-action-host-env/action/Dockerfile
13 строк
268 B
ChristopherHX
fix: step container workdir and mounts (#93) (#5295)
22 авг 2025, 02:29
Не верифицирован
22 авг 2025, 02:29
2dea26b
Код
Авторство
О чём код?
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"]