mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-08 21:53:06 +08:00
Bumps the npm-dev-dependencies group with 2 updates in the / directory: - [@ts-dev-tools/core](https://github.com/escemi-tech/ts-dev-tools) - [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc). --- updated-dependencies: - dependency-name: "@ts-dev-tools/core" dependency-version: 1.9.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-dev-dependencies - dependency-name: eslint-plugin-jsonc dependency-version: 2.21.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
13 lines
353 B
Docker
13 lines
353 B
Docker
FROM ghcr.io/super-linter/super-linter:slim-v8.0.0
|
|
|
|
HEALTHCHECK --interval=5m --timeout=10s --start-period=30s --retries=3 CMD ["/bin/sh","-c","test -d /github/home"]
|
|
ARG UID=1000
|
|
ARG GID=1000
|
|
RUN chown -R ${UID}:${GID} /github/home
|
|
USER ${UID}:${GID}
|
|
|
|
ENV RUN_LOCAL=true
|
|
ENV USE_FIND_ALGORITHM=true
|
|
ENV LOG_LEVEL=WARN
|
|
ENV LOG_FILE="/github/home/logs"
|