All checks were successful
Lint with yamllint / lint (push) Successful in -14s
8 lines
179 B
Docker
8 lines
179 B
Docker
FROM gitea.konchin.com/image/alpine:latest
|
|
|
|
RUN apk --no-cache add --no-check-certificate yamllint
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/bin/sh"]
|
|
CMD ["/entrypoint.sh"]
|