1
0
Fork 0
mirror of https://github.com/karancode/yamllint-github-action.git synced 2024-08-16 10:19:48 +02:00
yamllint/Dockerfile
dependabot[bot] f71ab6202f
chore(docker): bump python from 3.7-alpine to 3.12-alpine
Bumps python from 3.7-alpine to 3.12-alpine.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-09 10:13:36 +00:00

13 lines
271 B
Docker

FROM python:3.12-alpine
# hadolint ignore=DL3018
RUN apk add --update --no-cache bash ca-certificates curl git jq openssh
# hadolint ignore=DL3013
RUN pip install yamllint
RUN ["bin/sh", "-c", "mkdir -p /src"]
COPY ["src", "/src/"]
ENTRYPOINT ["/src/entrypoint.sh"]